-
-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathGemfile.dev
More file actions
44 lines (33 loc) · 872 Bytes
/
Gemfile.dev
File metadata and controls
44 lines (33 loc) · 872 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }
gem "jar-dependencies" if RUBY_PLATFORM == "java"
gem "rake", "~> 12.0"
ruby_version = Gem::Version.new(RUBY_VERSION)
# Development tools
gem "debug", github: "ruby/debug", platform: :ruby
gem "irb"
gem "cgi"
if ruby_version >= Gem::Version.new("3.4")
gem "drb"
gem "mutex_m"
gem "benchmark"
gem "base64"
gem "ostruct"
end
# RSpec
gem "rspec"
gem "rspec-retry"
if ruby_version >= Gem::Version.new("3.0") && RUBY_PLATFORM != "java"
gem "ruby-lsp-rspec"
end
# Coverage
gem "simplecov"
# Do not change it without checking that `CI=true COVERAGE=true bundle exec rake`
# passes in all projects
gem "rexml", "3.4.1"
gem "simplecov-cobertura", "~> 3.0"
group :rubocop do
gem "rubocop-rails-omakase"
gem "rubocop-packaging"
end