开发者

How to Uninstall A Plugin (Seed Fu) From Rails

开发者 https://www.devze.com 2023-01-02 02:53 出处:网络
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开发

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消