2011-10-07 15:02:14 -04:00
# -*- encoding: utf-8 -*-
2017-06-03 09:20:44 -04:00
# This is only used when puma is a git dep from Bundler, keep in sync with Rakefile
2013-08-08 19:19:55 -04:00
2017-06-03 09:20:44 -04:00
version = File . read ( File . expand_path ( " ../lib/puma/const.rb " , __FILE__ ) ) [ / VERSION = "( \ d+ \ . \ d+ \ . \ d+)" / , 1 ] || raise
2013-08-13 19:09:05 -04:00
2011-10-07 15:02:14 -04:00
Gem :: Specification . new do | s |
s . name = " puma "
2013-08-13 19:09:05 -04:00
s . version = version
2011-10-07 15:02:14 -04:00
s . authors = [ " Evan Phoenix " ]
2016-02-25 17:49:02 -05:00
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. "
2017-06-03 09:20:44 -04:00
s . summary = " Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications "
2011-10-07 15:02:14 -04:00
s . email = [ " evan@phx.io " ]
2011-12-05 19:09:58 -05:00
s . executables = [ " puma " , " pumactl " ]
2011-10-13 20:49:33 -04:00
s . extensions = [ " ext/puma_http11/extconf.rb " ]
2013-08-08 19:19:55 -04:00
s . files = ` git ls-files ` . split ( $/ )
2012-04-30 13:45:32 -04:00
s . homepage = " http://puma.io "
2014-06-02 19:24:53 -04:00
s . license = " BSD-3-Clause "
2016-06-06 19:15:54 -04:00
s . required_ruby_version = Gem :: Requirement . new ( " >= 1.9.3 " )
2011-10-07 15:02:14 -04:00
end