Method: Rails::Command::ConsoleCommand#initialize
- Defined in:
- railties/lib/rails/commands/console/console_command.rb
#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 'railties/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 |