forked from exoego/rspec-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (29 loc) · 864 Bytes
/
Gemfile
File metadata and controls
38 lines (29 loc) · 864 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in rspec-openapi.gemspec
gemspec
gem 'rails', ENV['RAILS_VERSION'] || '6.0.6.1'
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('4.0.0')
gem 'dry-logger', '1.2.1'
gem 'hanami', ENV['HANAMI_VERSION'] || '2.3.2'
else
gem 'dry-logger', '1.0.3'
gem 'hanami', ENV['HANAMI_VERSION'] || '2.1.0'
end
gem 'hanami-controller'
gem 'hanami-router'
end
gem 'concurrent-ruby', '1.3.4'
gem 'roda'
gem 'rails-dom-testing', '~> 2.2'
gem 'rspec-rails', '>= 5.0'
group :test do
gem 'simplecov', git: 'https://github.com/exoego/simplecov.git', branch: 'branch-fix'
gem 'simplecov-cobertura'
gem 'super_diff'
end
group :development do
gem 'code-scanning-rubocop'
gem 'pry'
end