Top "Bundler" questions

Bundler is a tool that makes it easier to keep track of what Ruby gems (and what versions of those gems) an application depends upon.

How do I specify local .gem files in my Gemfile?

I have a couple of gem files which I install via gem install xx.gem. Can I tell Bundler to …

ruby rubygems bundler
Understanding the Gemfile.lock file

After running the bundle install command, 'Gemfile.lock' is created in the working directory. What do the directives inside that …

ruby bundler gemfile.lock
Should Gemfile.lock be included in .gitignore?

I'm sort of new to bundler and the files it generates. I have a copy of a git repo from …

ruby git version-control bundler gemfile
"Could not find bundler" error

When I try to do bundler update I get this error: .rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/…

ruby-on-rails ruby rake bundler
Using npm to install or update required packages just like bundler for rubygems

I love Bundler, it's great at dependency management. I love npm, installing node packages is easy! I have a nodejs …

javascript dependencies node.js bundler npm
How to reinstall a gem using bundler

I did a bundle show and get the complete path to a gem directory. Unfortunately, I removed the directory using …

ruby rubygems bundler
How to use bundler behind a proxy?

I get the following output from the sudo bundle install command: Fetching source index for `http://rubygems.org/` Could not …

ruby-on-rails ruby proxy rubygems bundler
What does 'require: false' in Gemfile mean?

Does this: gem 'whenever', require: false mean that the gem needs to be installed, or does it mean it is …

ruby bundler gemfile
gem install pg --with-pg-config works, bundle fails

WhenI run (as root) gem install pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config I get the …

postgresql rubygems bundler pg
Bundle Install could not fetch specs from https://rubygems.org/

I'm attempting to follow the Hartl Rails Tutorial, and having trouble with the bundler gem. When using the commands 'bundle …

ruby-on-rails ruby gem bundler railstutorial.org