diff options
author | Akira Matsuda <ronnie@dio.jp> | 2011-11-04 04:50:53 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2011-11-04 05:31:47 +0900 |
commit | 7102a3d7fc55067b6cda1a7eeb3b3452050d9b6b (patch) | |
tree | 2a6e483e86974035dfdd6caacbb69201fad495f3 /railties/lib/rails | |
parent | b5f908a7ad515215f164e306f82c3e6c506182cb (diff) | |
download | rails-7102a3d7fc55067b6cda1a7eeb3b3452050d9b6b.tar.gz rails-7102a3d7fc55067b6cda1a7eeb3b3452050d9b6b.tar.bz2 rails-7102a3d7fc55067b6cda1a7eeb3b3452050d9b6b.zip |
move Rails console top level methods to IRB context
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/console/app.rb | 48 | ||||
-rw-r--r-- | railties/lib/rails/console/helpers.rb | 14 |
2 files changed, 35 insertions, 27 deletions
diff --git a/railties/lib/rails/console/app.rb b/railties/lib/rails/console/app.rb index 95c74baae2..cf081473a3 100644 --- a/railties/lib/rails/console/app.rb +++ b/railties/lib/rails/console/app.rb @@ -5,28 +5,32 @@ require 'action_controller' # work around the at_exit hook in test/unit, which kills IRB Test::Unit.run = true if Test::Unit.respond_to?(:run=) -# reference the global "app" instance, created on demand. To recreate the -# instance, pass a non-false value as the parameter. -def app(create=false) - @app_integration_instance = nil if create - @app_integration_instance ||= new_session do |sess| - sess.host! "www.example.com" - end -end +module IRB + module ExtendCommandBundle + # reference the global "app" instance, created on demand. To recreate the + # instance, pass a non-false value as the parameter. + def app(create=false) + @app_integration_instance = nil if create + @app_integration_instance ||= new_session do |sess| + sess.host! "www.example.com" + end + end -# create a new session. If a block is given, the new session will be yielded -# to the block before being returned. -def new_session - app = Rails.application - session = ActionDispatch::Integration::Session.new(app) - yield session if block_given? - session -end + # create a new session. If a block is given, the new session will be yielded + # to the block before being returned. + def new_session + app = Rails.application + session = ActionDispatch::Integration::Session.new(app) + yield session if block_given? + session + end -# reloads the environment -def reload!(print=true) - puts "Reloading..." if print - ActionDispatch::Reloader.cleanup! - ActionDispatch::Reloader.prepare! - true + # reloads the environment + def reload!(print=true) + puts "Reloading..." if print + ActionDispatch::Reloader.cleanup! + ActionDispatch::Reloader.prepare! + true + end + end end diff --git a/railties/lib/rails/console/helpers.rb b/railties/lib/rails/console/helpers.rb index 212fc6125a..070d3c2bbf 100644 --- a/railties/lib/rails/console/helpers.rb +++ b/railties/lib/rails/console/helpers.rb @@ -1,7 +1,11 @@ -def helper - @helper ||= ApplicationController.helpers -end +module IRB + module ExtendCommandBundle + def helper + @helper ||= ApplicationController.helpers + end -def controller - @controller ||= ApplicationController.new + def controller + @controller ||= ApplicationController.new + end + end end |