Class: Rails::Command::ConsoleCommand
- Includes:
- EnvironmentArgument
- Defined in:
- railties/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.
85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'railties/lib/rails/commands/console/console_command.rb', line 85 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 |