27 Apr 2012

Accessing ActionView::Base in a ActionController in Rails 2.3

just came accross an instance variable of an ActionView::Base in ActionController, which is @template;
  1. class AnyController < ApplicationController  
  2.   def index  
  3.     logger.debug @template.inspect #=> #<actionview::base:0xb685da48 ..="">  
  4.   end  
  5. end  
  6. </actionview::base:0xb685da48>  

22 Apr 2012

Note: How to show SQL in Rails Console

Just add the following lines into  config/environment.rb. This switches default logger to STDOUT.

  1. # Render SQL in Rails Console  
  2. if "irb" == $0  
  3.   require 'logger'  
  4.   if ENV.include?('RAILS_ENV')&&  
  5.   !Object.const_defined?('RAILS_DEFAULT_LOGGER')  
  6.      Object.const_set('RAILS_DEFAULT_LOGGER', Logger.new(STDOUT))  
  7.   else  
  8.      ActiveRecord::Base.logger = Logger.new(STDOUT)  
  9.   end  
  10. end  

8 Apr 2012

script/consoleでhelper, routing

- 下記に追記
いつのバージョンからか(少なくとも2.3.14からは)名前付きルートはscript/consoleを立ち上げた時点でlink_to はhelperというActionView::Baseのインスタンスからアクセスできて、ダイナミックルートはappというActionController::Integration::Sessionのインスタンスからアクセスできるようになっていました。

http://blog.p.latyp.us/2008/03/calling-helpers-in-rails-console.html


--------------------------------
- コンソールで名前付きルート
Testing Named Routes in the Rails Consoleからまんま拝借。

  1. include ActionController::UrlWriter   
  2. default_url_options[:host] = 'whatever'  


default_url_optionsは名前のとおり、/parent_controller/:host/child_controller/:idといった定義に対して以下の用にコンソールで名前付きパスのデフォルトのオプションを指定してくれる。
action_controller_path(:id => 23)
=> "/parent_controller/watever/child_controller/23"
belong_toなんかでリソースがネストしてる時に便利。

rs = ActionController::Routing::Routes
rs.recognize_path action_controller_path(:id => 23), :method => 'GET'
とかで、params => {:host => 'whatever', :id => '23'}とかがパラメータとして渡ってくるはず。試してない。


- Helperをコンソールで
  1. include HelperYouWantToRun #使いたいhelperをincludeする。  
  2. helper.method_you_want_to_run