15
16
17
18
19
20
21
22
23
|
# File 'lib/rbdock/command.rb', line 15
def execute
options = Options.parse!(@argv)
if options[:app]
options[:app_path] = Rbdock.clone_app_to_local(options[:app])
end
Rbdock::Generate.run(options)
rescue => e
abort "Error: #{e.message}"
end
|