File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 14
14
# sqlite3 is an optional, unspecified, dependency and Rails 6.0 only supports `~> 1.4`
15
15
gem 'sqlite3', '~> 1.4', platforms: [:ruby]
16
16
17
+ # Due to capybara strings issue
18
+ gem 'puma', '< 6.0.0'
19
+
17
20
case version = ENV['RAILS_VERSION'] || (File.exist?(version_file) && File.read(version_file).chomp) || ''
18
21
when /main/
19
22
gem "rails", :git => "https://github.com/rails/rails.git"
20
- gem 'puma', "3.12.1"
21
23
gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
22
24
gem 'selenium-webdriver', require: false
23
25
when /stable$/
24
26
gem_list = %w[rails railties actionmailer actionpack activerecord activesupport activejob actionview]
25
- gem 'puma', "3.12.1"
26
27
gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
27
28
28
29
gem_list.each do |rails_gem|
29
30
gem rails_gem, :git => "https://github.com/rails/rails.git", :branch => version
30
31
end
31
32
when nil, false, ""
32
33
gem "rails", "~> 7.0.0"
33
- gem "puma"
34
34
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
35
35
gem 'selenium-webdriver', require: false
36
36
else
37
37
add_net_gems_dependency if version.split(' ').last < '7.0'
38
38
39
39
gem "rails", version
40
- gem "puma"
41
40
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
42
41
gem 'selenium-webdriver', require: false
43
42
end
You can’t perform that action at this time.
0 commit comments