1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/puma.gemspec
David Kellum 825bf851f8 require ruby 2.2+ in gemspec (#1506)
* 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
2018-05-09 12:06:50 -06:00

22 lines
1.2 KiB
Ruby

# -*- encoding: utf-8 -*-
# This is only used when puma is a git dep from Bundler, keep in sync with Rakefile
version = File.read(File.expand_path("../lib/puma/const.rb", __FILE__))[/VERSION = "(\d+\.\d+\.\d+)"/, 1] || raise
Gem::Specification.new do |s|
s.name = "puma"
s.version = version
s.authors = ["Evan Phoenix"]
s.description = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. It's great for highly concurrent Ruby implementations such as Rubinius and JRuby as well as as providing process worker support to support CRuby well."
s.summary = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications"
s.email = ["evan@phx.io"]
s.executables = ["puma", "pumactl"]
s.extensions = ["ext/puma_http11/extconf.rb"]
s.metadata["msys2_mingw_dependencies"] = "openssl"
s.files = `git ls-files -- bin docs ext lib tools`.split("\n") +
%w[History.md LICENSE README.md]
s.homepage = "http://puma.io"
s.license = "BSD-3-Clause"
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
end