Skip to content

Working with dependencies in Ruby

Bundler

Creating a Gemfile.lock file

  1. Initialize the project:

    bundle init
    
  2. Install dependencies:

    bundle install
    
    or create a lock-file directly:

    bundle lock