Is there any command to check what plugins I am using in my RoR application?
Can开发者_如何学Python I use any command to check if my application is using any plugins or not?
Corrected answer
Just look in the vendor/plugins
directory. (If you don't have a vendor
directory, you're not using any plugins).
INCORRECT ANSWER
You want to run this from inside the main directory of your Rails app:
./script/plugin list
You can also get lots of nifty info from:
./script/plugin --help
精彩评论