File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1414# sqlite3 is an optional, unspecified, dependency and Rails 6.0 only supports `~> 1.4`
1515gem 'sqlite3', '~> 1.4', platforms: [:ruby]
1616
17+ # Due to capybara strings issue
18+ gem 'puma', '< 6.0.0'
19+
1720case version = ENV['RAILS_VERSION'] || (File.exist?(version_file) && File.read(version_file).chomp) || ''
1821when /main/
1922 gem "rails", :git => "https://github.com/rails/rails.git"
20- gem 'puma', "3.12.1"
2123 gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
2224 gem 'selenium-webdriver', require: false
2325when /stable$/
2426 gem_list = %w[rails railties actionmailer actionpack activerecord activesupport activejob actionview]
25- gem 'puma', "3.12.1"
2627 gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
2728
2829 gem_list.each do |rails_gem|
2930 gem rails_gem, :git => "https://github.com/rails/rails.git", :branch => version
3031 end
3132when nil, false, ""
3233 gem "rails", "~> 7.0.0"
33- gem "puma"
3434 gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
3535 gem 'selenium-webdriver', require: false
3636else
3737 add_net_gems_dependency if version.split(' ').last < '7.0'
3838
3939 gem "rails", version
40- gem "puma"
4140 gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
4241 gem 'selenium-webdriver', require: false
4342end
You can’t perform that action at this time.
0 commit comments