lib/pdk/cli/new.rb in pdk-1.1.0 vs lib/pdk/cli/new.rb in pdk-1.2.0

- old
+ new

@@ -1,16 +1,16 @@ - module PDK::CLI @new_cmd = @base_cmd.define_command do name 'new' - usage _('new <type> [options]') + usage _('new <thing> [options]') summary _('create a new module, etc.') - description _('Creates a new instance of <type> using relevant options.') + description _('Creates a new <thing> using relevant options.') default_subcommand 'help' end @new_cmd.add_command Cri::Command.new_basic_help end require 'pdk/cli/new/class' require 'pdk/cli/new/defined_type' require 'pdk/cli/new/module' +require 'pdk/cli/new/task'