If you get
=> Booting WEBrick
=> Rails 2.3.2 application starting on http://0.0.0.0:3002
/usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:142:in `named_helper_module_eval’: (eval):28:in `named_helper_module_eval’: compile error (SyntaxError)
(eval):28: syntax error, unexpected kEND, expecting $end
end # end
^ from /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:175:in `define_url_helper’
(…)
after upgrading to Rails 2.3.2, the culprit is likely an outdated routing-filter plugin, so just
script/plugin remove routing-filter
script/plugin install git://github.com/svenfuchs/routing-filter.git
May 11th, 2009 at 5:32 pm
That was exactly it! cheers,
June 15th, 2009 at 9:46 am
Works for me - Many thanks!