Configuring Bundler
How to configure the Bundler package manager
This page explains how to configure the Bundler package manager to pull packages from the Seal artifact server based on your existing setup.
Make sure you have the access token for the server ready.
Pull directly from the artifact server
Open the project's
Gemfile.Set your token to the artifact server in the
SEAL_TOKENenvironment variable, and put the project's ID in thePROJECT_IDenvironment variable.Find the source. Usually it's:
source 'https://rubygems.org'Replace it with:
source "https://#{ENV['SEAL_PROJECT']}:#{ENV['SEAL_TOKEN']}@ruby.sealsecurity.io Install the packages:
bundle installLast updated