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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff0a48e72ea02eb70e8123a00c158deb3959967f
4
- data.tar.gz: 4376da2d796d2ddc2d7afb5bffd7a5adbd307ef2
3
+ metadata.gz: 2c0040d685a42ff72fe775bba5f121adebb24aed
4
+ data.tar.gz: 84be49d1dfd0fabcfa4ea3c513090f7dc52e5158
5
5
  SHA512:
6
- metadata.gz: 0134a1d29d980d25f78b00469bb9304eb3448f60196c3744d28a0231e23ba8a097cf551e75c7c9454b5599a8c75f11506bf11f12a2aa2aa23571e2acfbbd188a
7
- data.tar.gz: 934d940b9eedcd21e52c5d9cb1a787b57f2f8a981e3546b36f811e0e0ba9a08f92c2e4f84deb42f169fedff7a131672abe2bf3abf2b287e460bd2ad92eac4623
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-2015, Lin Jen-Shin (godfat)
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
@@ -8,7 +8,7 @@ end
8
8
 
9
9
  Gemgem.init(dir) do |s|
10
10
  s.name = 'rack-handlers'
11
- s.version = '0.7.1'
11
+ s.version = '0.7.2'
12
12
  %w[rack].each{ |g| s.add_runtime_dependency(g) }
13
13
  %w[unicorn yahns rainbows zbatery]
14
14
  end
data/lib/rack-handlers.rb CHANGED
@@ -4,7 +4,9 @@
4
4
  require 'rack/handler'
5
5
 
6
6
  module Rack::Handler
7
- DEFAULT = %w[yahns zbatery rainbows unicorn puma thin webrick]
7
+ DEFAULT = %w[yahns zbatery rainbows unicorn
8
+ torquebox trinidad
9
+ puma thin webrick]
8
10
 
9
11
  def self.default(options = {})
10
12
  # Guess.
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: rack-handlers 0.7.1 ruby lib
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.1"
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 = "2015-12-12"
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.0"
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.1
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: 2015-12-12 00:00:00.000000000 Z
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.0
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`.