module ActsAsTaggableOnclass Tag < ::ActiveRecord::Baseinclude ActsAsTaggableOn::Utilsattr_accessible :nameneeded :module ActsAsTaggableOnclass Tag < ::ActiveRecord::Baseinclude ActsAsTaggableOn::Utilsattr_accessible :nametranslate :name
config/initializers/acts_as_taggable_on.rb with following content:
ActsAsTaggableOn::Tag.class_eval do
translates :name
end
Running "bundler exec rake db:migrate" fails with error message:
undefined method `translates' for #<Class:0xba5eea10> (NoMethodError)
Is something I missing here?