2010-04-01から1ヶ月間の記事一覧

ruby Hashの挙動

rails2.3.5でHashの挙動が違ったのでメモ class QuestionOption def initialize @id = 1 @word = "option1" @point = Hash.new('') end def addPoint(axsis,ponit) @point[axsis] = ponit end end の様なクラスでaddPointを呼び出すと発生した development環…

rails 2.3 render_component エラー

rails2.3 render_componentぷらいぐいんを入れて実行しようとしたら 以下のエラーが出た`alias_method’: undefined method `set_session_options’ for class `ActionController::Base’ (NameError) component.rbの以下をコメントアウトすれば動いた #alias_m…