lib/cide/cli.rb in cide-0.5.0 vs lib/cide/cli.rb in cide-0.6.0

- old
+ new

@@ -11,11 +11,10 @@ module CIDE # Command-line option-parsing and execution for cide class CLI < Thor include CIDE::Docker include Thor::Actions - add_runtime_options! default_command 'build' desc 'build', 'Builds an image and executes the run script' @@ -268,10 +267,10 @@ end docker('rmi', '--force', *old_cide_images) end - desc 'init', "Creates a blank #{CONFIG_FILES.first} into the project" + desc 'init', "Creates a blank #{CONFIG_FILES.first} in the project" def init puts "Creating #{CONFIG_FILES.first} with default values" create_file CONFIG_FILES.first, File.read(DEFAULT_CIDEFILE) end