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
I haven't had to do this yet, but I believe it's all handled by bundler.
When you create a new rails3 app, the rails dependencies are put into your Gemfile. You can run bundle install to install them. By default, they are installed into your BUNDLE_PATH.
If you want to install them within your app, you can specify where: bundle install vendor/gems.