Class: Rails::Command::ApplicationCommand
- Defined in:
- lib/rails/commands/application/application_command.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from Base
banner, base_name, class_usage, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, help, hide_command!, inherited, namespace, perform, printing_commands, usage_path
Methods included from Actions
#boot_application!, #load_environment_config!, #load_generators, #load_tasks, #require_application!, #set_application_directory!
Instance Method Details
#help ⇒ Object
23 24 25 |
# File 'lib/rails/commands/application/application_command.rb', line 23 def help perform # Punt help output to the generator. end |
#perform(*args) ⇒ Object
27 28 29 30 |
# File 'lib/rails/commands/application/application_command.rb', line 27 def perform(*args) Rails::Generators::AppGenerator.start \ Rails::Generators::ARGVScrubber.new(args).prepare! end |