Wed 24 Jun 2009
undefined method `render_component’ with ActiveScaffold and Rails 2.3.2
Posted by kosmas under ActiveScaffold, linux, ruby on rails
1 Comment
Problem
When using a nested (or embedded) scaffold in ActiveScaffold with Rails 2.3.2 you have the error:
undefined method `render_component'
Solution
According to the issue here, in Rails 2.3 the render_component has been removed.
Install the render_component from:
script/plugin install git://github.com/lackac/render_component.git -r rails-edge
and restart your server, and it should be working.