File: Gemfile.devtools

package info (click to toggle)
ruby-dry-logic 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 728 kB
  • sloc: ruby: 4,929; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

# this file is managed by dry-rb/devtools project

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

group :test do
  gem "simplecov", require: false, platforms: :ruby
  gem "simplecov-cobertura", require: false, platforms: :ruby
  gem "rexml", require: false

  gem "warning" if RUBY_VERSION >= "2.4.0"
end

group :tools do
  # this is the same version that we use on codacy
  gem "rubocop", "~> 1.12"
end