mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
19 lines
331 B
Ruby
19 lines
331 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in active_context.gemspec
|
|
gemspec
|
|
|
|
gem "rake", "~> 13.0"
|
|
gem "activesupport"
|
|
|
|
group :development, :test do
|
|
gem "rspec", "~> 3.0"
|
|
gem "byebug"
|
|
gem "rubocop"
|
|
gem "rubocop-rspec"
|
|
end
|
|
|
|
gem 'simplecov', require: false, group: :test
|