Class: Rails::Command::ConsoleCommand

Inherits:
Base
  • Object
show all
Includes:
EnvironmentArgument
Defined in:
lib/rails/commands/console/console_command.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Base

banner, base_name, command_name, default_command_root, desc, engine?, executable, #help, hide_command!, inherited, namespace, perform, printing_commands, usage_path

Methods included from Actions

#load_generators, #load_tasks, #require_application_and_environment!, #set_application_directory!

Instance Method Details

#performObject



76
77
78
79
80
81
82
83
84
85
86
# File 'lib/rails/commands/console/console_command.rb', line 76

def perform
  extract_environment_option_from_argument

  # RAILS_ENV needs to be set before config/application is required.
  ENV["RAILS_ENV"] = options[:environment]

  ARGV.clear # Clear ARGV so IRB doesn't freak.

  require_application_and_environment!
  Rails::Console.start(Rails.application, options)
end