I just switched to Edge Rails (revision 5207) since I want to use the BigDecimal support for an e-commerce website.. Unfortunately, some of my old code seems to be breaking things.. First off, it looks like my "skip_before_filter :check_authentication, :check_authorization, :only => [:login, :forgot_password]" doesn''t work at all, since the before_filter gets executed for every action, including :login and :forgot_password. Also, when I try doing something simple in a view such as: <%= text_field :model_name, :attribute_name %>, I get: ActionView::TemplateError (wrong number of arguments (0 for 1)) I''ve checked the documentation for edge rails at http://caboo.se/doc.html and as far as I can tell, I''m using the text_field method correctly (besides, I wouldn''t think edge rails would change this method, otherwise it''d break every rails app out there). I''ve also read the bug report about filter.rb being fixed at http://dev.rubyonrails.org/ticket/5949 and it seems that all legacy filters should still work.. Now, is there another edge rails release (stable perhaps?) that I should be using if I just want BigDecimal support? Or can anyone give me suggestions on how to fix the problems I''m having? Thanks, Mike