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 de开发者_运维百科precated.
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!
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.
精彩评论