mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
22 lines
371 B
Ruby
22 lines
371 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-backup-cli.gemspec
|
|
gemspec
|
|
|
|
group :development, :test do
|
|
gem 'gitlab-rspec', path: '../gitlab-rspec'
|
|
gem 'pry'
|
|
end
|
|
|
|
if next?
|
|
gem 'activesupport', '~> 7.1.4'
|
|
else
|
|
gem 'activesupport', '~> 7.0.8'
|
|
end
|