Method: Jets::Commands::Gems#check

Defined in:
lib/jets/commands/gems.rb

#checkObject



5
6
7
8
9
10
# File 'lib/jets/commands/gems.rb', line 5

def check
  check = Jets::Gems::Check.new(cli: true)
  check.run! # exits early if missing gems found
  # If reach here, means all gems are ok.
  puts "Congrats! All gems are available in as pre-built Lambda gems 👍"
end