Class: Rails::Command::DbconsoleCommand
- 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, exit_on_failure?, #help, hide_command!, inherited, namespace, perform, printing_commands, usage_path
Methods included from Actions
#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #require_environment!, #set_application_directory!
Instance Method Details
#perform ⇒ Object
174 175 176 177 178 179 180 181 182 |
# File 'lib/rails/commands/dbconsole/dbconsole_command.rb', line 174 def perform extract_environment_option_from_argument # RAILS_ENV needs to be set before config/application is required. ENV["RAILS_ENV"] = [:environment] require_application_and_environment! Rails::DBConsole.start() end |