File: Gemfile

package info (click to toggle)
ruby-memo-wise 1.5.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 384 kB
  • sloc: ruby: 2,663; makefile: 4; sh: 4
file content (31 lines) | stat: -rw-r--r-- 685 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
27
28
29
30
31
# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gemspec

group :test do
  gem "rspec", "~> 3.10"
  gem "values", "~> 1"
end

# Excluded from CI except on latest MRI Ruby, to reduce compatibility burden
group :checks do
  gem "codecov"
  gem "panolint", github: "panorama-ed/panolint", branch: "main"
end

# Excluded from CI except on latest MRI Ruby, to reduce compatibility burden
group :docs do
  gem "dokaz"
  gem "redcarpet", "~> 3.5"
  gem "yard", "~> 0.9"
  gem "yard-doctest", "~> 0.1"
end

# Optional, only used locally to release to rubygems.org
group :release, optional: true do
  gem "rake"
end