Class: Rails::Command::ConsoleCommand
- Includes:
- EnvironmentArgument
- Defined in:
- lib/rails/commands/console/console_command.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(args = [], local_options = {}, config = {}) ⇒ ConsoleCommand
constructor
A new instance of ConsoleCommand.
- #perform ⇒ Object
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!
Constructor Details
#initialize(args = [], local_options = {}, config = {}) ⇒ ConsoleCommand
Returns a new instance of ConsoleCommand.
70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/rails/commands/console/console_command.rb', line 70 def initialize(args = [], = {}, config = {}) = [] # For the same behavior as OptionParser, leave only options after "--" in ARGV. termination = .find_index("--") if termination = [termination + 1..-1] = [0...termination] end ARGV.replace() super(args, , config) end |
Instance Method Details
#perform ⇒ Object
85 86 87 88 |
# File 'lib/rails/commands/console/console_command.rb', line 85 def perform boot_application! Rails::Console.start(Rails.application, ) end |