Class: Rails::Command::DbconsoleCommand

Inherits:
Base
  • Object
show all
Includes:
EnvironmentArgument
Defined in:
lib/rails/commands/dbconsole/dbconsole_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



159
160
161
162
163
164
165
166
167
# File 'lib/rails/commands/dbconsole/dbconsole_command.rb', line 159

def perform
  extract_environment_option_from_argument

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

  require_application_and_environment!
  Rails::DBConsole.start(options)
end