undefined method `camelize' for "default_search_form":String (NoMethodError)
I used a ruby gem called Gizmo which is a simple page model testing framework. At that time, I was using Gizmo version 0.1.0 which was using activesupport 3.0. Apparently, activesupport 3.0 is not compatible with Gizmo or some other gems that I am using in my code.
To fix the issue I simply downgraded my activesupport gem to be 2.3.3. However, Gizmo gem has now been updated to 0.1.1 which uses the correct version of activesupport.
Awesome! Thanks for sharing this. Btw, how did you figure out that this was a gem issue?
ReplyDelete