File: Gemfile

package info (click to toggle)
ruby-docile 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: ruby: 134; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 619 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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