Ruby Version Managers

In the previous chapter, we discussed RubyGems and how they interact with Ruby and your local file system. In that discussion, we casually mentioned that ruby version managers play a role in how Ruby uses Gems. However, we did not go into detail. Specifically, we did not discuss what ruby version managers are nor what services they provide to a developer who is writing and using Ruby programs. In this chapter, we will talk about those topics.

What Are Ruby Version Managers?

Ruby version managers are programs that let you install, manage, and use multiple versions of Ruby. If you're just getting started with Ruby, you may wonder why you could possibly need to use more than one version of Ruby. Chances are, the programs you've written so far are "version agnostic"; that is, they don't rely on features of Ruby that depend on any specific ruby version. If you do rely on such features, the ones you use all run well in whatever version of Ruby you use, so you're not even aware that you're using version-specific features.

However, this won't always be the case: Ruby is an evolving language with features added, modified, and deleted with every new version. Eventually, you're going to write or use a Ruby program that needs a different version of Ruby, and that's when you will find that you need a Ruby version manager.

To provide an idea of what might change, here's a short list of some major changes to Ruby over the past few major versions at the time of this writing:

  • Version 1.9: Changed block variables to require local variables; Introduced { a: 5, b: 6 } syntax for hashes with symbol keys; Many incompatible changes.

  • Version 2.0: Added keyword arguments; Added %i() syntax for symbol arrays.

  • Version 2.2: Removed several obsolete libraries.

  • Version 2.3: Added squiggle heredocs (<<~HERE); Added safe navigation operator (&.); Added #positive?, #negative?, and #zero? methods to the Numeric class.

As you can see, every new version has some changes; sometimes, programs that run on older versions of Ruby no longer work in more recent versions. Someday, you will need to install another version of Ruby without removing your current Ruby.

Another reason to use Ruby version managers is when working on multiple applications. Software applications tend to standardize on a specific Ruby version in order to guarantee developers don't use unsupported language features. For example, you may be asked to help out with an existing project that has standardized on Ruby version 2.1, but your current local Ruby version is 2.3, which you need to work on your current projects. In that case, you will need the assistance of a Ruby version manager to help you manage and move between different Rubies as you switch between different projects.

Which Ruby Version Manager Should I Use?

There are two major ruby version managers in common use: RVM and rbenv. (There are others as well, like chruby, but their use is much less widespread.) They take different approaches to the problem of using multiple versions of Ruby, but the result is the same: you can easily use multiple versions of Ruby on the same system.

Which version manager should you use, though? This partly depends on your own preferences and needs, but most people can just pick one and start using it. Functionally, the two systems perform all the tasks most developers need. In most cases, there is little in the way of features to recommend one over the other.

If you're using GitHub Codespaces, AWS Cloud9, or a Linux system, we recommend RVM as it is easier to install and use. There are some problems with RVM on a Mac, however, mostly having to do with using older versions of Ruby, which we ask you to do later. For that reason, you may want to use Rbenv on a Mac. If you have Homebrew installed, the easiest way to install Rbenv is with the brew install rbenv command.

For information on how to install and use RVM or rbenv, see the documentation at the RVM and Rbenv websites. In this book, we focus attention on how they interact with your system.

RVM

Figure 3 shows a typical installation of two different Ruby versions under RVM. This output assumes that rvm stores its files in /usr/local/rvm; depending on your system and installation, the directory may be elsewhere. For instance, a common location is ~/.rvm (~/ means your home directory).

Figure 3

$ tree /usr/local/rvm        # the following is partial output
/usr/local/rvm               # RVM path directory
├── gems
│   ├── ruby-2.2.2
│   │   ├── bin
│   │   │   ├── bundle
│   │   │   └── rubocop
│   │   └── gems
│   │       ├── bundler-1.12.5
│   │       ├── freewill-1.0.0
│   │       │   └── lib
│   │       │       └── freewill.rb
│   │       ├── pry-0.10.4
│   │       └── rubocop-0.43.1
│   └── ruby-2.3.1
│       ├── bin
│       │   ├── bundle
│       │   └── rubocop
│       └── gems
│           ├── bundler-1.12.5
│           ├── freewill-1.0.0
│           │   └── lib
│           │       └── freewill.rb
│           ├── pry-0.10.4
│           └── rubocop-0.45.0
└── rubies
    ├── ruby-2.2.2
    │   └── bin
    │       ├── gem
    │       ├── irb
    │       └── ruby
    └── ruby-2.3.1
        └── bin
            ├── gem
            ├── irb
            └── ruby

Study the above diagram a little bit to get a feel for how RVM structures Rubies and their Gems.

How RVM Works

At RVM's core is a set of directories in which RVM stores all your Ruby versions, its associated tools (such as gem and irb), and its Gems. Each directory is specific to a given Ruby version. If you need Ruby 2.3.1, RVM uses the files in the ruby-2.3.1 directory; if you need Ruby 2.2.2, it gets the files from the ruby-2.2.2 directory. Note that the standard Ruby executables are found in the rubies subdirectory of RVM's main directory, while Gems are found in the gems subdirectory. Note also that the Gem version numbers can differ between Rubies: in this case, Ruby 2.2.2 uses Rubocop 0.43.1, while Ruby 2.3.1 uses Rubocop 0.45.0.

RVM defines a shell function (see your shell's documentation for information on functions) named rvm. Your shell uses this function in preference to executing the disk-based rvm command. There are complex reasons behind using shell functions, but the main reason is that a function can modify your environment, while a disk-based command cannot.

It's not important to know very much about shell functions. They are worth mentioning merely because they are uncommon. This distinction might be important if you ever need to diagnose problems with RVM.

When you run rvm use VERSION to change the Ruby version you want to use, you actually invoke the rvm function. It modifies your environment so that the various ruby commands invoke the correct version. For instance, rvm use 2.2.2 modifies your PATH variable so that the ruby command uses the Ruby installed in the ruby-2.2.2 directory. It makes other changes as well, but the PATH change is the most noticeable.

Things get more interesting when you set a project-specific version of Ruby, as we'll see in Setting Local Rubies.

If this sounds pretty complex, it is; but, in day-to-day use, it's mostly invisible. If you want to run, say, rubocop from the Ruby 2.2.2 directory, you tell RVM to use Ruby 2.2.2, then run the rubocop command. The system searches for a rubocop command in your PATH, and runs the first one it finds. Since the RVM directories usually occur early in your PATH, the system finds the desired rubocop command that pertains to Ruby 2.2.2. In Figure 3, we can see that the rubocop command lives in /usr/local/rvm/gems/ruby-2.2.2/bin.

Installing Rubies

One of the first things you should do with RVM is to install the Ruby versions you need. This is easy to do, and only needs to be done once for any particular version of Ruby.

Let's say you're about to start work on a project that requires Ruby 2.2.2. The first thing you should do is to check whether you already have Ruby 2.2.2 installed. To do this, run:

$ rvm list rubies

rvm rubies

   ruby-2.1.5 [ x86_64 ]
=* ruby-2.3.1 [ x86_64 ]

# => - current
# =* - current && default
#  * - default

This command shows that you currently have Ruby versions 2.1.5 and 2.3.1 installed, and that version 2.3.1 is both the current version and the default version. Since the listing does not show version 2.2.2, we need to install it:

$ rvm install 2.2.2

You may get a warning that version 2.2.2 is obsolete, out-of-date, vulnerable to security issues, or just a plain bad idea to install. This is normal with older unsupported versions of Ruby. Ideally, you don't want to use these Rubies, but that's not always practical if you need the older version for an existing application.

We specifically ask you to install version 2.2.2 here so we can demonstrate how to install and work with different versions of Ruby. You can uninstall 2.2.2 when you complete this chapter.

If you still can't install 2.2.2, try something more recent, such as 2.4.10, 2.5.9, or 2.6.7 -- as long as it's older than your default ruby version. There may be some discrepancies with installing a more recent version, but the main idea is to get some practice with working with multiple versions of Ruby.

If you're using Cloud 9, attempting to install an older version of Ruby may produce an error that looks like this:

curl: (23) Failed writing body (0 != 2750)
There was an error(23).

If you see this error, try running the following commands to set up a more friendly environment in your Cloud 9 instance:

$ rvm group add rvm "$USER"
$ rvm fix-permissions
$ rvm install 2.2.2

You should only need to run these commands once.

Setting Local Rubies

Now that you have Ruby 2.2.2 installed, how do you tell RVM to use it? There are several ways, each described in RVM's documentation. The easiest way is to run:

$ rvm use 2.2.2

As we saw earlier, this command modifies your environment to ensure that the first ruby your system finds is version 2.2.2. This same change also works for related commands such as gem, irb and rubocop.

Usually, you won't use this command. Instead, you will define a default version, and then override the default on a directory-by-directory basis. To define the default version -- the Ruby version that RVM uses automatically in a new terminal session or shell -- just run:

$ rvm use 2.3.1 --default

If you later set a different version as the current Ruby, you can restore the default with:

$ rvm use default

So far, so good. This is straightforward, and easily fits in with the PATH changes described in the previous section. Suppose, though, that you want to use a different version of Ruby with one of your projects? It's not too hard to switch versions with the rvm use VERSION command, but it is error prone: you will sometimes forget to change versions, and may also forget to switch back to the default ruby when you finish. Instead, you should automate the version changes. This is where things get a bit complex, though.

There are several ways to do this, but the easiest is to create a .ruby-version file in your project's root directory; the content of this file is just the version number of ruby that you want to use when using programs from that directory. For example, suppose we want to use Ruby 2.2.2 for the project in our ~/src/magic directory. To do this, run:

$ cd ~/src/magic
$ rvm --ruby-version use 2.2.2

This creates a .ruby-version file in the directory. Once set, you don't need to worry about setting the version for this project. For good measure, you should set your default version in your home directory:

$ cd ~
$ rvm --ruby-version default

This ensures that RVM uses the default Ruby when you aren't in the project directory.

To make use of the .ruby-version file, RVM replaces the cd command from your shell with a shell function. This function invokes the real cd command, then checks for the .ruby-version file (it also checks for some other files we won't discuss). If it finds one of these files, it retrieves the version number from the file, and then modifies your environment in the same way the rvm function does. Thus, every time you change directories with the cd command, RVM modifies your environment to run the proper Ruby version.

RVM also uses the Gemfile for ruby projects that use Bundler (described in the next chapter). If the Gemfile contains a ruby directive, RVM uses that version of ruby to run the program. Note, however, that the .ruby-version file takes precedence.

See the RVM documentation for more information on this process.

Where Are My Rubies, Gems and Apps Now?

RVM creates a directory at installation known as the RVM path; it also installs all RVM-related files, including all the Rubies and Gems that it manages, in this directory. To determine the location of the RVM path, run:

$ rvm info rvm

On the author's Cloud9 account, this displays:

ruby-2.2.2:

  rvm:
    version:      "rvm 1.27.0 (latest) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.io/]"
    updated:      "2 months 6 days 20 hours 34 minutes 44 seconds ago"
    path:         "/usr/local/rvm"

The path entry in that listing is the RVM path.

As we see in Figure 3, there are two important subdirectories in the RVM path: the rubies and gems. Both directories contain subdirectories for each version of Ruby being managed by RVM. In particular, rubies/ruby-XX.XX.XX/bin contains the standard Ruby executables (such as ruby, irb, and gem) for Ruby version XX.XX.XX. The corresponding gems/ruby-XX.XX.XX/bin directory contains the executables associated with the Gems installed for each Ruby (such as rubocop and bundle).

There is no guarantee that RVM will always use the above directory structure. It may change in a future version. The important thing is to see that RVM has separate places for installing the different versions of Ruby and the associated Gems.

In both Both directories contain a bin subdirectory where executables are stored. In particular, rubies/ directory contains all the rubies bin, as well as its associated utilities (such as irb and gem). The gems directory has a similar structure, but each of the subdirectories contains a bin subdirectory that contains the executable programs associated with your Gems, like rubocop and bundle.

You may recall that gem env displays some interesting details about your Ruby and Gem configuration, most notably the directories it uses. After installing RVM, gem env still works; it shows you the details for the Ruby and Gem currently active in RVM; many of these files are under the RVM path.

When Things Go Wrong

RVM is a complex system. While problems are rare once you have it running, this complexity can sometimes get in the way of stability, especially since it modifies system commands like cd by invoking them through shell functions. There are many moving parts that have the potential to go wrong. They probably won't go wrong, but the potential remains.

Given that, the most likely issue with RVM is that you get confused about which version of Ruby you are running, or you install or update Gems with the wrong gem command. When trying to diagnose an RVM problem, first make sure that you are using the correct Ruby version -- such problems are easier to see -- then check for Gem versioning issues.

Here are some useful troubleshooting hints and commands:

  • Make sure your directory name does not include any spaces, and none of its ancestors (parents, grandparents, etc) do either. RVM does not currently support directory names with spaces.

  • type cd | head -1 ; type rvm | head -1

    Use this command to verify that you are using the cd and rvm functions, not the built-in cd command nor the executable file rvm. These commands should print:

    cd is a function
    rvm is a function
    

    If it does, everything is okay. Otherwise, the cd and rvm functions aren't defined properly and RVM fails to work.

    To load cd and rvm as functions, confirm that your shell startup file (.profile, .bash_profile, etc. -- see your specific shell's documentation) includes a command that looks like something like this:

    $ source "{RVM PATH}"/scripts/rvm"
    

    ({RVM PATH} is the name of your RVM path.) This command should be near the end of the file, after any commands that set or modify your PATH variable or replace built-in commands with functions. If you must change the file, start a new terminal session after making the changes, then close any previously open terminal sessions.

  • echo $PATH

    Confirm that the {RVM PATH}/rubies-{VERSION}/bin and {RVM PATH}/gem/rubies-{VERSION}/bin directories are present in your PATH, and listed before any other directories that may contain programs with the same name. If, for example, /usr/bin occurs before {RVM_PATH}/rubies-{VERSION}/bin in your PATH, your system may load the system version of Ruby instead of one managed by RVM.

  • rvm info

    Displays a longish list of information about the current RVM environment. Similar to gem env in the information provided, but formatted differently, and includes RVM-specific information.

  • rvm current

    Displays the active version of Ruby. If you see the wrong version displayed and don't understand why, see the documentation. The section on "Choosing the Ruby Version" is particularly important. If you use gemsets (see below), this command includes the gemset name in its output.

  • rvm fix-permissions

    Repairs the permissions on RVM files. This may be useful if you accidentally use sudo to install, modify or update RVM, or any of its rubies or Gems. If you see "permission denied" messages on any of these files, try running this command.

  • rvm repair all

    Repairs files that help RVM manage the different rubies. This may be useful if RVM seems completely broken in areas.

  • rvm get latest

    Download and install the latest version of RVM. This is most useful when you are using a new or unfamiliar feature that may not be available or working correctly in your current version of RVM

  • gem env

    Display configuration information about your RubyGems system.

  • gem list

    Displays a list of all Gems installed for the current Ruby, along with their version numbers. For instance:

    $ gem list
    bundler (1.12.5)
    freewill (1.1.1, 1.0.0)
    pry (0.10.4)
    rubocop (0.43.1)
    

    Note how this shows two different versions for the freewill Gem, which means that both versions are installed and available. If you switch to another Ruby version, the output will be different:

    $ rvm use 2.1.5
    bundler (1.12.2)
    pry (0.10.1)
    rubocop (0.35.1)
    

    Here, all of the Gem versions have changed, and the lack of an entry for freewill shows that it is not installed for this Ruby.

  • Read the official troubleshooting information for RVM.

RVM Gemsets

RVM supports something called gemsets. This feature provides capabilities similar to that provided by Bundler (discussed in the next chapter): it lets you tie specific Gems to each of your projects. Bundler is, by far, more widely used, so we recommend using it instead of gemsets. However, you may one day need to learn about gemsets, so you might want to take a look at the basic gemsets documentation.

rbenv

Figure 4 shows a typical installation of two different Ruby versions under rbenv.

Figure 4

$ tree /usr/local/rbenv # the following is partial output
/usr/local/rbenv # rbenv root directory
├── shims
│   ├── bundle
│   ├── irb
│   ├── rubocop
│   └── ruby
└── versions
    ├── 2.2.2
    │   ├── bin
    │   │   ├── bundle
    │   │   ├── irb
    │   │   ├── rubocop
    │   │   └── ruby
    │   └── lib
    │       └── ruby
    │           └── gems
    │               └── 2.2.0
    │                   └── gems
    │                       ├── bundler-1.12.5
    │                       ├── freewill-1.0.0
    │                       │   └── lib
    │                       │       └── freewill.rb
    │                       ├── pry-0.10.4
    │                       └── rubocop-0.43.1
    └── 2.3.1
        ├── bin
        │   ├── bundle
        │   ├── irb
        │   ├── rubocop
        │   └── ruby
        └── lib
            └── ruby
                └── gems
                    └── 2.2.0
                        └── gems
                            ├── bundler-1.12.5
                            ├── freewill-1.0.0
                            │   └── lib
                            │       └── freewill.rb
                            ├── pry-0.10.4
                            └── rubocop-0.45.0

How rbenv Works

At rbenv's heart is a set of directories very similar to the directories at RVM's core. It stores and uses the rubies, associated tools, and Gems from these directories. There are subdirectories for each version of Ruby located in the versions directory. If you need Ruby 2.3.1, rbenv uses the files in the 2.3.1 directory; if you need Ruby 2.2.2 it gets the files from the 2.2.2 directory. Note that the Gem version numbers can differ: in this case, Ruby 2.2.2 uses Rubocop 0.43.1, while Ruby 2.3.1 uses Rubocop 0.45.0.

As a user of either rbenv or rvm, you'll feel that both tools are very similar with only a small difference in syntax. However, under the hood, how rbenv manages Rubies is a significant departure from how RVM does it. rbenv uses a set of small scripts called shims. The scripts have the same names as the various ruby and Gem programs. They live in the shims sub-directory of the main rbenv installation directory. Valid rbenv installations include the shims directory in the PATH; rbenv places it before any other directories that contain ruby or any related programs; this ensures that the system searches the shims directory first. This way, when you run one of the ruby commands or Gems, the system executes the proper shim script. The shim script, in turn, executes rbenv exec PROGRAM; this command determines what version of Ruby it should use, and executes the appropriate program from the Ruby version-specific directories, e.g., /usr/local/rbenv/versions/2.3.1/bin.

That all sounds pretty complex, and it is. However, in practice, it's mostly invisible. If you want to run, say, rubocop from the Ruby 2.2.2 directory, you tell rbenv to use Ruby 2.2.2, then run the rubocop command. Magically, the system finds the rubocop shim, the shim runs rbenv exec rubocop, and that runs the Ruby 2.2.2 version of rubocop.

Installing Rubies

One of the first things you should do with rbenv is to install the Ruby versions you need. This is easy to do, and only needs to be done once for any particular version of Ruby.

Let's say you're about to start work on a project that requires Ruby 2.2.2. You first need to check whether you already have Ruby 2.2.2 installed. To do this, run:

$ rbenv versions

system
2.1.5
* 2.3.1 (set by /Users/.../project/.ruby-version)

This command shows that you currently have Ruby versions 2.1.5 and 2.3.1 installed, and that version 2.3.1 is the currently selected Ruby version. Since the listing does not show version 2.2.2, we need to install it. However, unlike RVM, rbenv does not provide a way to install new Rubies by default. Fortunately, there's an easy fix: just install the ruby-build rbenv plugin. If you're on a Mac with a Homebrew version of Ruby, just run:

$ brew install ruby-build

Otherwise, follow the installation instructions on the ruby-build GitHub page.

Once you've installed the ruby-build plugin, you can install Ruby 2.2.2 with:

$ rbenv install 2.2.2

On some Macs, this command may fail with the following message:

make: *** [build-ext] Error 2

If your install attempt fails with this message, try installing again with the following command:

$ CFLAGS="-Wno-error=implicit-function-declaration" rbenv install 2.2.2

Replace 2.2.2 with whatever version you are trying to install.

Setting Local Rubies

Now that you have Ruby 2.2.2 installed, how do you tell rbenv to use it? There are several ways, each described in rbenv's GitHub README file. The easiest way is to first run:

$ rbenv global 2.3.1

This sets the default version of Ruby to use as 2.3.1. From there, you only need to worry about programs that need a different version. For example, let's say the program in your ~/src/magic directory needs Ruby 2.0.0. To arrange that, run:

$ cd ~/src/magic
$ rbenv local 2.0.0

This creates a .ruby-version file in the ~/src/magic directory; when you run any Ruby-based programs stored in this directory, rbenv checks the .ruby-version file, and uses that version of Ruby for the program. If there is no .ruby-version file, rbenv launches a search for an alternative .ruby-version file, and, if it still can't find one, it uses the global version of Ruby.

Note that this .ruby-version file is identical to the .ruby-version file used by RVM: same name, same content, same function, and the same search sequence.

See the rbenv documentation for more information on this process.

Where Are My Rubies, Gems and Apps Now?

Rbenv creates a directory at installation known as the rbenv root directory; it also installs all rbenv related files, including all the Rubies and Gems that it manages, in this directory. To determine the location of the rbenv root directory, run:

$ rbenv root

On the author's system, this displays:

$ /usr/local/rbenv

This corresponds to the top level directory in Figure 4.

Figure 4 shows that there are two important subdirectories in the root directory: the shims directory, and the versions directory. The shims directory contains all the shims used by rbenv, while versions contains all the different Rubies. Inside the versions directory, you will find one directory for each Ruby version you have installed; inside each of these directories, you will find the specific version of Ruby, all its companion programs, and your Gems for that version.

You may recall that you can use gem env to learn some interesting details about your Ruby and Gem configuration, most notably the directories it uses. After installing rbenv, gem env still works, and shows you the details for the Ruby and Gem currently active in rbenv; you will find many of these files stored under the rbenv root directory.

When Things Go Wrong

Compared to RVM, rbenv uses a conservative approach to perform its tasks: it doesn't rely on making dynamic changes to your environment or system commands. Instead, it makes a small, one-time change to your PATH, and leaves your system to run exactly as designed. This is the real strength of rbenv, and the main reason many developers prefer it over RVM; it's less likely to go wrong. There's just not that many moving parts to worry about.

Hence, problems with rbenv are few once you have it running. The worst that is likely to happen is that you might accidentally delete or move some files it needs, which you can usually fix from backups (you have backups, right?). The most likely issue with rbenv is that you get confused about which version of Ruby you are running, or you use the wrong gem command to install or update some Gems. When trying to diagnose an rbenv problem, first make sure you are using the correct Ruby version -- such problems are easier to see -- then check for Gem versioning issues.

Here are some useful troubleshooting commands:

  • rbenv version

    Displays the currently active version of Ruby, along with a short explanation of how rbenv determined the version. If you see the wrong version displayed and don't understand why, see the documentation. The section on "Choosing the Ruby Version" is particularly important.

  • echo $PATH

    Confirm that your shims directory is in your PATH. Specifically, verify that it occurs early in your path. If, for example, /usr/bin occurs before /usr/local/rbenv/shims in your PATH, your system may load the system version of Ruby instead of one managed by rbenv.

  • rbenv which COMMAND

    Displays the disk location of the command named by COMMAND (e.g., ruby, irb, rubocop)

  • rbenv rehash

    Rebuilds the shims directory. If you can't execute some commands or rbenv doesn't appear to be running the correct commands, try this command.

  • rbenv root

    Display the path of the rbenv root directory.

  • rbenv shims

    Display a list of all current shims.

  • gem env

    Display configuration information about your RubyGems system.

Plugins

There are a dozen or so plugins that extend the capabilities provided by rbenv. Don't forget to check them out as your use of rbenv expands. Of particular interest to almost everybody is ruby-build; this adds the install command to the rbenv command so you can install rubies directly with rbenv; this is easier than manually configuring and installing each version.

Summary

Ruby version managers let you manage multiple versions of Ruby, the utilities (such as irb) associated with each version, and the RubyGems installed for each Ruby. With version managers, you can install and uninstall ruby versions and gems, and run specific versions of ruby with specific programs and environments.

The two main version managers, RVM and rbenv, are similar in function, with little to distinguish between the two for most developers. By default, RVM has more features, but rbenv plugins provide much of the functionality not provided by the base install of rbenv. RVM works by dynamically managing your environment, mostly by modifying your PATH variable and replacing the built-in cd command with an RVM-aware shell function; rbenv works by just modifying your PATH and some other environment variables.

As we've seen, Ruby programs often need a specific version of Ruby, and specific versions of the Gems it uses. Ruby version managers take care of most of the issues arising from these differing requirements, but sometimes you'll find that they aren't enough. For example, you may need to use Ruby 2.2.2 for two different projects instead of your default 2.3.1, but you may also need separate versions of the Rails Gem, say 4.2.7 for one project, and version 5.0.0 for the other. While both RVM and rbenv (with the aid of a plugin) can handle these requirements, the easier and more common path is to use a RubyGem called Bundler. We discuss Bundler in the next chapter.