1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00
docile/Gemfile

27 lines
619 B
Text
Raw Normal View History

# frozen_string_literal: true
source "https://rubygems.org"
2011-12-06 13:51:56 -05:00
# Specify gem's runtime dependencies in docile.gemspec
2011-12-06 13:51:56 -05:00
gemspec
group :test do
gem "rspec", "~> 3.10"
gem "simplecov", require: false
# CI-only test dependencies go here
2022-04-23 16:02:51 -04:00
if ENV.fetch("CI", nil) == "true"
gem "simplecov-cobertura", require: false, group: "test"
end
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