forked from rswag/rswag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
58 lines (49 loc) · 1.24 KB
/
Gemfile
File metadata and controls
58 lines (49 loc) · 1.24 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# frozen_string_literal: true
source 'https://rubygems.org'
# Allow the rails version to come from an ENV setting so CI can test multiple versions.
# See http://www.schneems.com/post/50991826838/testing-against-multiple-rails-versions/
rails_version = Gem::Version.create(ENV['RAILS_VERSION'] || '8.0.0')
gem 'byebug'
gem 'puma'
gem 'rails', rails_version.to_s
gem 'responders'
case rails_version.segments[0]
when 5
gem 'sqlite3', '~> 1.3.6'
when 6
gem 'concurrent-ruby', '< 1.3.5'
gem 'sqlite3', '~> 1.4'
when 7
gem 'concurrent-ruby', '< 1.3.5' if rails_version.segments[1] < 2
gem 'sqlite3', '~> 1.4'
when 8
gem 'sqlite3', '~> 2.2'
end
gem 'net-smtp', require: false
gem 'rswag-api', path: './rswag-api'
gem 'rswag-ui', path: './rswag-ui'
group :development, :test do
gem 'rswag-specs', path: './rswag-specs'
end
group :test do
gem 'capybara'
gem 'climate_control'
gem 'geckodriver-helper'
gem 'generator_spec'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'simplecov', '=0.21.2'
gem 'test-unit'
end
group :development do
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
end
group :assets do
gem 'uglifier'
end