Acts_as_taggable - Rails 2.0 - no such file to load

After upgrading to Rails 2.0.2, acts_as_taggable is not working.

Under Rails 1.2.6, acts_as_taggable worked fantastic.

I upgraded to Rails 2.0.2 and receive the following error when Mongrel
starts up----

ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require’: no such file to load – acts_as_taggable
(MissingSourceFile)

it shows up in gem list acts_as_taggable (2.0.2)
gem -v 1.0.1
rails -v Rails 2.0.2
I tried loading it in the environment.rb and also through
config/initializers.

I followed this step in the acts_as_taggable readme


class Photo < ActiveRecord::Base
acts_as_taggable
end

becomes

class Photo < ActiveRecord::Base
acts_as_taggable :join_table => “tags_photos”
end


I upgraded, this was not a new install of Ruby on Rails 2.0.

This is happening on Windows and OS X.

Did I miss something?

Thank you for the help.

Anna

acts _as_taggable is moved from core Rails 2.0 to a plugin…

You can get more details from…

http://wiki.rubyonrails.org/rails/pages/ActsAsTaggablePluginHowto

Ratnavel S. wrote:

acts _as_taggable is moved from core Rails 2.0 to a plugin…

You can get more details from…

http://wiki.rubyonrails.org/rails/pages/ActsAsTaggablePluginHowto

Thanks.