Hello, I'm building a Rails 3 app and am trying to install acts_as_commentable
Here's what I did: Added to my Gemfile:
gem "acts_as_commentable"
Ran bundle install
Generated a Migration with the comments.rb (Comments table was created correctly)
I then wanted to enable my book controller for commenting, so I added to books_controller.rb
acts_as_commentable
But now I get an error when I load /books:
Routing Error
undefined local variable or method `acts_as_commentable' for BooksController:Class
Suggestions?