mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
26 lines
619 B
Ruby
26 lines
619 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Specify gem's runtime dependencies in docile.gemspec
|
|
gemspec
|
|
|
|
group :test do
|
|
gem "rspec", "~> 3.10"
|
|
gem "simplecov", require: false
|
|
|
|
# CI-only test dependencies go here
|
|
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
|