Skip to content

Commit

Permalink
require ruby 2.2+ in gemspec (#1506)
Browse files Browse the repository at this point in the history
* require ruby 2.2+ in gemspec

As of 0ed4ba8, we are no longer running CI for ruby < 2.2. Per #1440,
puma hasn't actually been compatible with ruby 1.9 since puma 3.8.0.

github: fixes #1440

* Don't run ruby 2.1 in appveyor either

* Remove obsolete 2.1-Gemfile
  • Loading branch information
dekellum authored and nateberkopec committed May 9, 2018
1 parent bcbe811 commit 825bf85
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 16 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ tmp
t/
.rbx/
Gemfile.lock
gemfiles/2.1-Gemfile.lock
.idea/
/test/test_puma.state
/test/test_server.sock
Expand Down
14 changes: 0 additions & 14 deletions gemfiles/2.1-Gemfile

This file was deleted.

2 changes: 1 addition & 1 deletion puma.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ Gem::Specification.new do |s|
%w[History.md LICENSE README.md]
s.homepage = "http://puma.io"
s.license = "BSD-3-Clause"
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
end

0 comments on commit 825bf85

Please sign in to comment.