Class: Rails::Command::Db::System::ChangeCommand
- Defined in:
 - lib/rails/commands/db/system/change/change_command.rb
 
Overview
:nodoc:
Instance Method Summary collapse
- 
  
    
      #initialize(positional_args, option_args)  ⇒ ChangeCommand 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ChangeCommand.
 - #perform ⇒ Object
 
Methods inherited from Base
banner, base_name, 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
#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #require_environment!, #set_application_directory!
Constructor Details
#initialize(positional_args, option_args) ⇒ ChangeCommand
Returns a new instance of ChangeCommand.
      13 14 15 16  | 
    
      # File 'lib/rails/commands/db/system/change/change_command.rb', line 13 def initialize(positional_args, option_args, *) @argv = positional_args + option_args super end  | 
  
Instance Method Details
#perform ⇒ Object
      18 19 20  | 
    
      # File 'lib/rails/commands/db/system/change/change_command.rb', line 18 def perform Rails::Generators::Db::System::ChangeGenerator.start(@argv) end  |