Class: Rails::Console
- Inherits:
-
Object
- Object
- Rails::Console
- Includes:
- ConsoleHelper
- Defined in:
- lib/rails/commands/console.rb
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#console ⇒ Object
readonly
Returns the value of attribute console.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
Instance Method Summary collapse
- #environment ⇒ Object (also: #environment?)
-
#initialize(app, options = {}) ⇒ Console
constructor
A new instance of Console.
- #sandbox? ⇒ Boolean
- #set_environment! ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize(app, options = {}) ⇒ Console
Returns a new instance of Console.
29 30 31 32 33 34 35 36 37 |
# File 'lib/rails/commands/console.rb', line 29 def initialize(app, ={}) @app = app @options = app.sandbox = sandbox? app.load_console @console = app.config.console || IRB end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
27 28 29 |
# File 'lib/rails/commands/console.rb', line 27 def app @app end |
#console ⇒ Object (readonly)
Returns the value of attribute console.
27 28 29 |
# File 'lib/rails/commands/console.rb', line 27 def console @console end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
27 28 29 |
# File 'lib/rails/commands/console.rb', line 27 def @options end |
Class Method Details
.parse_arguments(arguments) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/rails/commands/console.rb', line 11 def parse_arguments(arguments) = {} OptionParser.new do |opt| opt. = "Usage: rails console [environment] [options]" opt.on('-s', '--sandbox', 'Rollback database modifications on exit.') { |v| [:sandbox] = v } opt.on("-e", "--environment=name", String, "Specifies the environment to run this console under (test/development/production).", "Default: development") { |v| [:environment] = v.strip } opt.parse!(arguments) end (arguments, ) end |
Instance Method Details
#environment ⇒ Object Also known as: environment?
43 44 45 |
# File 'lib/rails/commands/console.rb', line 43 def environment [:environment] ||= super end |
#sandbox? ⇒ Boolean
39 40 41 |
# File 'lib/rails/commands/console.rb', line 39 def sandbox? [:sandbox] end |
#set_environment! ⇒ Object
48 49 50 |
# File 'lib/rails/commands/console.rb', line 48 def set_environment! Rails.env = environment end |
#start ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/rails/commands/console.rb', line 52 def start set_environment! if environment? if sandbox? puts "Loading #{Rails.env} environment in sandbox (Rails #{Rails.version})" puts "Any modifications you make will be rolled back on exit" else puts "Loading #{Rails.env} environment (Rails #{Rails.version})" end if defined?(console::ExtendCommandBundle) console::ExtendCommandBundle.include(Rails::ConsoleMethods) end console.start end |