Search code examples
ruby-on-railsruby-on-rails-plugins

How to Uninstall A Plugin (Seed Fu) From Rails


We installed Seed Fu to add in seed data in rails, then noticed that it isn't working right - doing some digging, we realized that Rails 2.3.8 comes with seeding built in, and seed fu might be deprecated.

Now we're trying to uninstall seed fu, but are not sure of the right way to do it.

We installed seed fu using

script/plugin install git://github.com/mbleigh/seed-fu.git

Any help is appreciated!


Solution

  • Plugins installed via script/plugin install are installed in the vendor/plugins/ directory.

    It's safe to just rm -rf vendor/plugins/seed-fu. Don't forget to remove it from source control as well.