mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Bump to 2.3.2
This commit is contained in:
parent
c68ea5e46b
commit
a9349ee286
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
=== 2.3.2 / 2013-07-08
|
||||||
|
|
||||||
|
* 1 bug fix:
|
||||||
|
|
||||||
|
* Move starting control server to after daemonization.
|
||||||
|
|
||||||
=== 2.3.1 / 2013-07-06
|
=== 2.3.1 / 2013-07-06
|
||||||
|
|
||||||
* 2 bug fixes:
|
* 2 bug fixes:
|
||||||
|
|
|
@ -28,7 +28,7 @@ module Puma
|
||||||
# too taxing on performance.
|
# too taxing on performance.
|
||||||
module Const
|
module Const
|
||||||
|
|
||||||
PUMA_VERSION = VERSION = "2.3.1".freeze
|
PUMA_VERSION = VERSION = "2.3.2".freeze
|
||||||
CODE_NAME = "Delicious Thin Mints"
|
CODE_NAME = "Delicious Thin Mints"
|
||||||
|
|
||||||
FAST_TRACK_KA_TIMEOUT = 0.2
|
FAST_TRACK_KA_TIMEOUT = 0.2
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = "puma"
|
s.name = "puma"
|
||||||
s.version = "2.3.1"
|
s.version = "2.3.2"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Evan Phoenix"]
|
s.authors = ["Evan Phoenix"]
|
||||||
s.date = "2013-07-06"
|
s.date = "2013-07-09"
|
||||||
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. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby."
|
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. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby."
|
||||||
s.email = ["evan@phx.io"]
|
s.email = ["evan@phx.io"]
|
||||||
s.executables = ["puma", "pumactl"]
|
s.executables = ["puma", "pumactl"]
|
||||||
|
|
Loading…
Reference in a new issue