Reputation: 10224
What is the opposite of $ bundle package vendor/cache?
I want to unpackage the gems. It seems there is something wrong with it, that every time I run bundle
I get a multi_json-1.0.3 directory in my Rails app.
After running bundle in the command line, at the end it tells me "Your bundle is complete! It was installed into ./multi_json-1.0.3".
Upvotes: 0
Views: 170
Reputation: 9752
All that command does is place the gem code inside vendor/cache
. If you want to remove it just delete the folder for multi_json, it should be easy to find.
Upvotes: 1