rails

Rails3のflashの新記法ではまった

Rails3のredirect_toで:noticeオプションを付けることでflashを使えるようになった。ということで flash[:notice] = 'message' redirect_to :action => 'index' と書いていたものを redirect_to {:action => 'index'}, :notice => 'message' と修正したのだ…