5

Using Bundler to install Ruby gems

 3 years ago
source link: https://help.dreamhost.com/hc/en-us/articles/115001070131-Using-Bundler-to-install-Ruby-gems
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Using Bundler to install Ruby gems

Overview

If your Ruby application won't start because of a missing gem, then you must install it locally using Bundler.

Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that you need. Bundler prevents dependencies and ensures that the gems you need are present in development, staging, and production. Starting work on a project is as simple as running the bundle install command.

The following describes how to set up and use Bundler for your RubyGem applications.

Setting up Bundler

This article assumes you've already set up a Ruby on Rails site based on the following installation guides:

  1. Open a terminal window and run the following command:
    [server]$ gem install bundler
    
  2. Navigate to your project root directory.
  3. Specify your dependencies in a Gemfile:
    source 'https://rubygems.org'
    gem 'multi_json'
    gem 'rack'
    gem 'rspec', '~>3.7.0'
  4. Install all of the required gems from your specified sources:
    [server]$ bundle install
    

    The second command adds the Gemfile and Gemfile.lock to your repository, which ensures that other developers on your app, as well as your deployment environment, all use the same third-party code that you are using now.

  5. Inside your app, load up the bundled environment:

    This step is only necessary if you are not running RVM.

    require 'rubygems'
    require 'bundler/setup'
    
    # require your gems as usual
    require 'multi_json'
    
  6. Run an executable that comes with a gem in your bundle:
    [server]$ bundle exec rspec spec/models
    

    In some cases, running executables without bundle exec may work, if the executable happens to be installed in your system and does not pull in any gems that conflict with your bundle. However, this is unreliable and not recommended. Even if it looks like it works, it may not work in the future or on another machine.

  7. To create a shortcut to gems in your bundle, run the following:
    [server]$ bundle install --binstubs
    
    [server]$ bin/rspec spec/models
    

The executables installed into bin are scoped to the bundle, and will always work.

Creating a RubyGem with Bundler

Bundler is also an easy way to create new gems. Just like you might create a standard Rails project using rails new, you can create a standard gem project with bundle gem. Create a new gem with a README, .gemspec, Rakefile, directory structure, and all the basic boilerplate you need to describe, test, and publish a gem:

[server]$ bundle gem my_gem

create  my_gem/Gemfile
      create  my_gem/.gitignore
      create  my_gem/lib/my_gem.rb
      create  my_gem/lib/my_gem/version.rb
      create  my_gem/my_gem.gemspec
      create  my_gem/Rakefile
      create  my_gem/README.md
      create  my_gem/bin/console
      create  my_gem/bin/setup
      create  my_gem/CODE_OF_CONDUCT.md
      create  my_gem/LICENSE.txt
      create  my_gem/.travis.yml
      create  my_gem/test/test_helper.rb
      create  my_gem/test/my_gem_test.rb
Initializing git repo in ./my_gem

Using Bundler with Ruby applications

See also

Did this article answer your questions?


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK