mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
25 lines
524 B
Ruby
25 lines
524 B
Ruby
# frozen_string_literal: true
|
|
|
|
def next?
|
|
File.basename(__FILE__) == "Gemfile.next"
|
|
end
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in gitlab-safe_request_store.gemspec
|
|
gemspec
|
|
|
|
group :development, :test do
|
|
gem 'gitlab-rspec', path: '../gitlab-rspec'
|
|
end
|
|
|
|
gem 'activerecord-gitlab', path: '../activerecord-gitlab'
|
|
gem 'gitlab-utils', path: '../gitlab-utils'
|
|
gem 'gitlab-safe_request_store', path: '../gitlab-safe_request_store'
|
|
|
|
if next?
|
|
gem 'rails', '~> 7.2'
|
|
else
|
|
gem 'rails', '~> 7.1.5.1'
|
|
end
|