# File lib/blimpy/cli.rb, line 59 def start ensure_blimpfile begin fleet = load_blimpfile rescue Blimpy::InvalidBlimpFileError => e puts "The Blimpfile is invalid!" exit 1 end if options['dry-run''dry-run'] puts 'skipping actually starting the fleet' exit 0 end fleet.start end