Home » Ruby on Rails Bundler

Ruby on Rails Bundler

by Online Tutorials Library

Ruby on Rails Bundler

In Rails, bundler provides a constant environment for Ruby projects by tracking and installing suitable gems that are needed. It manages an application’s dependencies through its entire life, across many machines, systematically and repeatably.

To use bundler, you need to install it.

The gem bundler bundles all the suitable gems your appication is based upon. Bundling Rails and other dependencies increases slug size by a few megabytes. Increased slug size is a worthwhile tradeoff for simplified dependency management, as well as flexibility of being able to use any version of Rails you wish.

To not install a group of gems, use the BUNDLE_WITHOUT config var.

Bundler Version

Different versions of bundler have different bugs and behavior. Bundler versions generally take a large amount of verification and Validation and are released infrequently. It needs maximum stability, avoids deprecation and notification cycles on Bundler as it changes.


Bundler Version Issues

Different bundler versions have different bugs.

Bundler 1.13.6

If you are using an older version of bundler, it allows you to have a version of Ruby in your Gemfile.lock file. It is not valid according to the Ruby declaration in your Gemfile.

You will get the following error:

You need to upgrade to latest bundler.


Bundler 1.13.1

You will get the following error:

You need to upgrade your Ruby version to be compatible with minimum Ruby version specified in your gems.


Bundler 1.11.2

Some times your application may be running with a gem that currently does not have a valid gemspec.


You may also like