Skip to content

Commit 8d2b95c

Browse files
committed
Change minimum Ruby version for Puma to 2.2
Puma now require Ruby 2.2 minmum https://github.com/puma/puma/pull/1506/files
1 parent e3cad68 commit 8d2b95c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gemfile-rails-dependencies

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ when /master/
1313
gem 'i18n', :git => 'git://github.com/svenfuchs/i18n.git', :branch => 'master'
1414
gem 'sprockets', :git => 'git://github.com/rails/sprockets.git', :branch => 'master'
1515
gem 'sprockets-rails', :git => 'git://github.com/rails/sprockets-rails.git', :branch => 'master'
16-
if RUBY_VERSION >= "1.9.3"
16+
if RUBY_VERSION >= "2.2"
1717
gem 'puma', :git => 'git://github.com/puma/puma', :branch => 'master'
1818
end
1919
when /stable$/
2020
gem_list = %w[rails railties actionmailer actionpack activerecord activesupport]
2121
gem_list << 'activejob' if version > '4-1-stable'
2222
gem_list << 'actionview' if version > '4-0-stable'
23-
if RUBY_VERSION >= "1.9.3"
23+
if RUBY_VERSION >= "2.2"
2424
gem_list << 'puma' if version > '5-0-stable'
2525
end
2626

@@ -40,7 +40,7 @@ when nil, false, ""
4040
else
4141
gem "rails", version
4242

43-
if version >= '5-1-stable' && RUBY_VERSION >= "1.9.3"
43+
if version >= '5-1-stable' && RUBY_VERSION >= "2.2"
4444
gem "puma"
4545
end
4646
end

0 commit comments

Comments
 (0)