-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
38 lines (31 loc) · 965 Bytes
/
Gemfile
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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
group :development do
## Windows requires some additional installations:
## ```
## Installing byebug 11.1.3 with native extensions
## MSYS2 could not be found. Please run 'ridk install'
## or download and install MSYS2 manually from https://msys2.github.io/
## ```
gem 'pry-byebug', '~> 3.9' unless RUBY_PLATFORM == 'java' || Gem.win_platform?
gem 'gem_toys', '~> 0.14.0'
gem 'toys', '~> 0.15.3'
end
group :audit do
gem 'bundler', '~> 2.0'
gem 'bundler-audit', '~> 0.9.0'
end
group :test do
gem 'rspec', '~> 3.9'
## Don't update to 0.22 until TruffleRuby is 23:
## https://github.com/oracle/truffleruby/milestone/32
## https://github.com/oracle/truffleruby/issues/2813
gem 'simplecov', '~> 0.22.0'
gem 'simplecov-cobertura', '~> 2.1'
end
group :lint do
gem 'rubocop', '~> 1.61.0'
gem 'rubocop-performance', '~> 1.0'
gem 'rubocop-rspec', '~> 2.0'
end