Archive for category Ruby on Rails (RoR)
undefined method `render_text’ – ruby error
Posted by gullele in Ruby on Rails (RoR) on October 16, 2010
May be this would be the first error one might come across after following some tutorials or books.
Here is the quick fix use
render :text => "what ever to print here"
in place of the
render_text "what ever to print here"
It should solve the problem!
Happy rubying