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 command in Rails 3.
|
I want to freeze a specific gem into my Rails application. In rails 2 there was this command:
I can't find that command in Rails 3.
| ||||
|
feedback
|
|
I haven't had to do this yet, but I believe it's all handled by When you create a new rails3 app, the rails dependencies are put into your If you want to install them within your app, you can specify where: | |||||||||||
feedback
|
|
So, the short answer is, you don't. When you modify your Gemfile, and then run When Bundler does its business, it creates the Gemfile.lock file, which (and this is provided you use bundler alone for managing your gem on all workstations/environments/deployments) performs the same function as freezing all of the gems you've required. For free! (Check this file into version control!) If your new development intern pulls down your source on a fresh machine, it takes one You don't need to unpack the gems and check them in to your app, because it doesn't matter: you're guaranteeing the same versions are being called regardless of where they are installed, which will likely vary from machine to machine anyways (.bundle/ should not be checked in to the repo) - so why stick another 60-80 MB of files into your repo that you won't ever be changing or using? (incidentally, this is why I wouldn't recommend a | |||||||||||||
feedback
|
|
DO NOT USE THE "RECOMMENDED" ANSWER BY NFM! Instead, review the Bundler site, particularly the page on deployments: http://gembundler.com/deploying.html The short summary is to use specific versions in your Gemfile and run Using the | |||||
feedback
|
|
I had to do this for typus gem deployment on Heroku as you can't run a
| |||
|
feedback
|
|
| |||||
|
feedback
|
|
You can bundle install on dreamhost without any issues. If you are on shared the environment is already setup to store them locally in your home directory. If you are on a VPS or Dedicated you can run bundle install as root or just add this to your .bash_profile
| ||||
|
feedback
|
|
well I have to modify slightly one of the gems I need. So I need to keep it inside my Repo. So what NFM mentioned is what I probably need... | |||
|
feedback
|
|
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:
This way you'll be notified when the gem is updated. | |||
|
feedback
|
|
The command that you want is But just a notice, the | |||
|
feedback
|
|
I think what you are looking for is
checkout the man pages here: http://gembundler.com/man/bundle-package.1.html | ||||
|
feedback
|
|
Cleaner instructions for the | ||||
|
feedback
|
|
A lot of comments are somewhat saying that it's not useful to use the bundle install --path vendor/gems, but those people who are using Dreamhost, it should note that you cannot use bundle install in Dreamhost. The solution is to get all the gems into the vendor folder and upload the whole thing to the Dreamhost directory. There are other solutions to turn around this, but it's much more complicated to do. | |||
|
feedback
|