2021-05-10 12:26:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-14 19:56:20 -05:00
|
|
|
source "https://rubygems.org"
|
2011-12-06 13:51:56 -05:00
|
|
|
|
2021-05-06 15:42:28 -04:00
|
|
|
# CI-only dependencies go here
|
2021-05-10 12:26:41 -04:00
|
|
|
if ENV["CI"] == "true" # rubocop:disable Style/IfUnlessModifier
|
2021-05-07 09:49:58 -04:00
|
|
|
gem "simplecov-cobertura", require: false, group: "test"
|
2015-06-24 16:00:41 -04:00
|
|
|
end
|
|
|
|
|
2012-10-29 15:52:57 -04:00
|
|
|
# Specify gem's dependencies in docile.gemspec
|
2011-12-06 13:51:56 -05:00
|
|
|
gemspec
|
2021-05-10 12:26:41 -04:00
|
|
|
|
|
|
|
group :test do
|
|
|
|
gem "rspec", "~> 3.10"
|
|
|
|
gem "simplecov", require: false
|
|
|
|
end
|
|
|
|
|
|
|
|
# Excluded from CI except on latest MRI Ruby, to reduce compatibility burden
|
|
|
|
group :checks do
|
|
|
|
gem "panolint", github: "panorama-ed/panolint", branch: "main"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Optional, only used locally to release to rubygems.org
|
|
|
|
group :release, optional: true do
|
|
|
|
gem "rake"
|
|
|
|
end
|