I want to freeze a specific gem into my Rails application.
In rails 2 there was this command:
rake gems:unpack
I can\'t find that c
Pod - If you need to modify the gem, the best practice to do this would be forking the project, making the change, then using the 'git' flag in bundler:
git 'some_gem', :git => 'git://github.com/me/my_forked_some_gem.git'
This way you'll be notified when the gem is updated.