rack-handlers 0.7.1 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +10 -0
- data/README.md +3 -1
- data/Rakefile +1 -1
- data/lib/rack-handlers.rb +3 -1
- data/rack-handlers.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c0040d685a42ff72fe775bba5f121adebb24aed
|
|
4
|
+
data.tar.gz: 84be49d1dfd0fabcfa4ea3c513090f7dc52e5158
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deb4dab07de2c809a14b984197a5c3a4eec2b264b2d770b42d2f98353153c703df859611107fbf6c99be044a3fb5901d0d257183a1d6bd939354fd756fcf2530
|
|
7
|
+
data.tar.gz: 278429ba6adef5565c49062ad9d6708408121e63dd913eb5e9a44db31a44fb501402f92fbae44154e0dc6083841865f40d68134f0a55991f23fb890585d4bc9c
|
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# CHANGES
|
|
2
2
|
|
|
3
|
+
## rack-handlers 0.7.2 -- 2016-01-14
|
|
4
|
+
|
|
5
|
+
* Added torquebox and trinidad to the default list for JRuby.
|
|
6
|
+
Note that they distribute their own rack handler, therefore
|
|
7
|
+
this only changes the default list rather than providing one.
|
|
8
|
+
|
|
9
|
+
## rack-handlers 0.7.1 -- 2015-12-12
|
|
10
|
+
|
|
11
|
+
* Added a new rack handler for yahns.
|
|
12
|
+
|
|
3
13
|
## rack-handlers 0.7.0 -- 2013-08-22
|
|
4
14
|
|
|
5
15
|
* Introduced rack-handlers.rb for you that patched `Rack::Handler.default`
|
data/README.md
CHANGED
|
@@ -38,6 +38,8 @@ pick the server with the following order:
|
|
|
38
38
|
* zbatery
|
|
39
39
|
* rainbows
|
|
40
40
|
* unicorn
|
|
41
|
+
* torquebox (for jruby)
|
|
42
|
+
* trinidad (for jruby)
|
|
41
43
|
* puma
|
|
42
44
|
* thin
|
|
43
45
|
* webrick
|
|
@@ -58,7 +60,7 @@ For people who likes to run `rails s`!
|
|
|
58
60
|
|
|
59
61
|
Apache License 2.0
|
|
60
62
|
|
|
61
|
-
Copyright (c) 2012-
|
|
63
|
+
Copyright (c) 2012-2016, Lin Jen-Shin (godfat)
|
|
62
64
|
|
|
63
65
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
64
66
|
you may not use this file except in compliance with the License.
|
data/Rakefile
CHANGED
data/lib/rack-handlers.rb
CHANGED
data/rack-handlers.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: rack-handlers 0.7.
|
|
2
|
+
# stub: rack-handlers 0.7.2 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "rack-handlers"
|
|
6
|
-
s.version = "0.7.
|
|
6
|
+
s.version = "0.7.2"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib"]
|
|
10
10
|
s.authors = ["Lin Jen-Shin (godfat)"]
|
|
11
|
-
s.date = "
|
|
11
|
+
s.date = "2016-01-14"
|
|
12
12
|
s.description = "Unicorn family Rack handlers for you. Mostly for `rails s`."
|
|
13
13
|
s.email = ["godfat (XD) godfat.org"]
|
|
14
14
|
s.files = [
|
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
"task/gemgem.rb"]
|
|
29
29
|
s.homepage = "https://github.com/godfat/rack-handlers"
|
|
30
30
|
s.licenses = ["Apache License 2.0"]
|
|
31
|
-
s.rubygems_version = "2.5.
|
|
31
|
+
s.rubygems_version = "2.5.1"
|
|
32
32
|
s.summary = "Unicorn family Rack handlers for you. Mostly for `rails s`."
|
|
33
33
|
|
|
34
34
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-handlers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lin Jen-Shin (godfat)
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
65
|
version: '0'
|
|
66
66
|
requirements: []
|
|
67
67
|
rubyforge_project:
|
|
68
|
-
rubygems_version: 2.5.
|
|
68
|
+
rubygems_version: 2.5.1
|
|
69
69
|
signing_key:
|
|
70
70
|
specification_version: 4
|
|
71
71
|
summary: Unicorn family Rack handlers for you. Mostly for `rails s`.
|