Sha256: fc6653e601823ee54176f39d43f3893ed8bf79e43f26c920c2614c83ed2785f2
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
require 'tty-prompt' module PDK::CLI @module_generate_cmd = @module_cmd.define_command do name 'generate' usage _('generate [options] <module_name>') summary _('This command is now \'pdk new module\'.') PDK::CLI.template_url_option(self) PDK::CLI.template_ref_option(self) PDK::CLI.skip_interview_option(self) run do |opts, args, _cmd| require 'pdk/generate/module' module_name = args[0] if module_name.nil? || module_name.empty? puts command.help exit 1 end PDK::CLI::Util.validate_template_opts(opts) PDK.logger.info(_('New modules are created using the ‘pdk new module’ command.')) prompt = TTY::Prompt.new(help_color: :cyan) redirect = PDK::CLI::Util::CommandRedirector.new(prompt) redirect.target_command('pdk new module') answer = redirect.run if answer module_name_parts = module_name.split('-', 2) if module_name_parts.size > 1 opts[:username] = module_name_parts[0] opts[:module_name] = module_name_parts[1] else opts[:module_name] = module_name end opts[:target_dir] = opts[:module_name] PDK.logger.info(_('Creating new module: %{modname}') % { modname: module_name }) PDK::Generate::Module.invoke(opts) else exit 1 end end end end
Version data entries
5 entries across 5 versions & 1 rubygems