Class: CloudSpec::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/cloudspec/cli.rb

Instance Method Summary collapse

Instance Method Details

#initObject



71
72
73
74
75
76
77
78
# File 'lib/cloudspec/cli.rb', line 71

def init
  fail CloudSpec::FileNotFoundError, "Could not find initialization path '#{options[:path]}'" unless Dir.exist? options[:path]

  CloudSpec.build_scaffold(options[:path])
rescue => e
  CloudSpec.log.error e.to_s
  exit 1
end