Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Gemfile « project_with_checksum_lock « test « bundler-checksum « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 238bd09669fd3490c40b925f0e01472f09473260 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

source 'https://rubygems.org'

if ENV['BUNDLER_CHECKSUM_VERIFICATION_OPT_IN'] # this verification is still experimental
  $:.unshift(File.expand_path('../../lib', __dir__))
  require 'bundler-checksum'
  Bundler::Checksum.patch!
end

gem 'rails', '~> 6.1.6.1'