1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Bump required_ruby_version to 1.9.3

I'm not sure it runs on 1.9.3, but it doesn't compile on 1.8.7:

mini_ssl.c:4:26: error: ruby/version.h: No such file or directory
mini_ssl.c:9:21: error: ruby/io.h: No such file or directory
This commit is contained in:
Jeremy Evans 2016-06-06 16:15:54 -07:00
parent 7dfd7fa54a
commit b05ddf98c8

View file

@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.license = "BSD-3-Clause"
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.8.7")
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.rubyforge_project = "puma"
s.rubygems_version = "1.8.25"
s.summary = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications"