-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
42 lines (36 loc) · 792 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
39
40
41
42
source "https://rubygems.org"
gemspec
gem 'rake'
gem 'gig'
gem 'ansi'
group(:dev) do
gem 'irb'
platform(:mri) do
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.7')
gem 'debug', '> 1'
else
gem 'byebug'
end
end
platform(:jruby) { gem 'ruby-debug' }
end
group(:test) do
gem 'minitest'
gem 'minitest-around'
gem 'minitest-reporters'
gem('simplecov')
gem 'simplecov-lcov'
end
# jsi does not depend on these, but we wish to test integration with them
group(:extdep) do
gem 'jmespath', '~> 1.5'
gem 'scorpio', '~> 0.6'
gem 'spreedly_openapi', github: 'notEthan/spreedly_openapi', tag: 'v0.2.0'
gem 'activesupport'
gem 'hashie'
gem('i18n')
end
group(:doc) do
gem 'yard'
platform(:mri, :truffleruby) { gem 'commonmarker' }
end