puma 1.6.0 → 1.6.1
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.
- data/Gemfile.lock +22 -0
- data/History.txt +5 -0
- data/Manifest.txt +2 -1
- data/lib/puma/const.rb +1 -1
- data/lib/puma/detect.rb +4 -0
- data/puma.gemspec +2 -2
- metadata +3 -2
- data/.travis.yml +0 -10
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: http://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
hoe (3.0.7)
|
|
5
|
+
rake (~> 0.8)
|
|
6
|
+
json (1.7.4)
|
|
7
|
+
rack (1.4.1)
|
|
8
|
+
rake (0.9.2.2)
|
|
9
|
+
rake-compiler (0.8.1)
|
|
10
|
+
rake
|
|
11
|
+
rdoc (3.12)
|
|
12
|
+
json (~> 1.4)
|
|
13
|
+
|
|
14
|
+
PLATFORMS
|
|
15
|
+
ruby
|
|
16
|
+
|
|
17
|
+
DEPENDENCIES
|
|
18
|
+
hoe
|
|
19
|
+
jruby-openssl
|
|
20
|
+
rack
|
|
21
|
+
rake-compiler
|
|
22
|
+
rdoc
|
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.travis.yml
|
|
2
1
|
COPYING
|
|
3
2
|
Gemfile
|
|
3
|
+
Gemfile.lock
|
|
4
4
|
History.txt
|
|
5
5
|
LICENSE
|
|
6
6
|
Manifest.txt
|
|
@@ -38,6 +38,7 @@ lib/puma/compat.rb
|
|
|
38
38
|
lib/puma/configuration.rb
|
|
39
39
|
lib/puma/const.rb
|
|
40
40
|
lib/puma/control_cli.rb
|
|
41
|
+
lib/puma/detect.rb
|
|
41
42
|
lib/puma/events.rb
|
|
42
43
|
lib/puma/jruby_restart.rb
|
|
43
44
|
lib/puma/null_io.rb
|
data/lib/puma/const.rb
CHANGED
data/lib/puma/detect.rb
ADDED
data/puma.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "puma"
|
|
5
|
-
s.version = "1.6.
|
|
5
|
+
s.version = "1.6.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Evan Phoenix"]
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.executables = ["puma", "pumactl"]
|
|
13
13
|
s.extensions = ["ext/puma_http11/extconf.rb"]
|
|
14
14
|
s.extra_rdoc_files = ["History.txt", "Manifest.txt"]
|
|
15
|
-
s.files = ["
|
|
15
|
+
s.files = ["COPYING", "Gemfile", "Gemfile.lock", "History.txt", "LICENSE", "Manifest.txt", "README.md", "Rakefile", "TODO", "bin/puma", "bin/pumactl", "examples/CA/cacert.pem", "examples/CA/newcerts/cert_1.pem", "examples/CA/newcerts/cert_2.pem", "examples/CA/private/cakeypair.pem", "examples/CA/serial", "examples/config.rb", "examples/puma/cert_puma.pem", "examples/puma/csr_puma.pem", "examples/puma/puma_keypair.pem", "examples/qc_config.rb", "ext/puma_http11/PumaHttp11Service.java", "ext/puma_http11/ext_help.h", "ext/puma_http11/extconf.rb", "ext/puma_http11/http11_parser.c", "ext/puma_http11/http11_parser.h", "ext/puma_http11/http11_parser.java.rl", "ext/puma_http11/http11_parser.rl", "ext/puma_http11/http11_parser_common.rl", "ext/puma_http11/org/jruby/puma/Http11.java", "ext/puma_http11/org/jruby/puma/Http11Parser.java", "ext/puma_http11/puma_http11.c", "lib/puma.rb", "lib/puma/app/status.rb", "lib/puma/cli.rb", "lib/puma/client.rb", "lib/puma/compat.rb", "lib/puma/configuration.rb", "lib/puma/const.rb", "lib/puma/control_cli.rb", "lib/puma/detect.rb", "lib/puma/events.rb", "lib/puma/jruby_restart.rb", "lib/puma/null_io.rb", "lib/puma/rack_patch.rb", "lib/puma/reactor.rb", "lib/puma/server.rb", "lib/puma/thread_pool.rb", "lib/rack/handler/puma.rb", "puma.gemspec", "test/ab_rs.rb", "test/config/app.rb", "test/hello-post.ru", "test/hello.ru", "test/lobster.ru", "test/mime.yaml", "test/slow.ru", "test/test_app_status.rb", "test/test_cli.rb", "test/test_config.rb", "test/test_http10.rb", "test/test_http11.rb", "test/test_integration.rb", "test/test_null_io.rb", "test/test_persistent.rb", "test/test_puma_server.rb", "test/test_rack_handler.rb", "test/test_rack_server.rb", "test/test_thread_pool.rb", "test/test_unix_socket.rb", "test/test_ws.rb", "test/testhelp.rb", "tools/trickletest.rb"]
|
|
16
16
|
s.homepage = "http://puma.io"
|
|
17
17
|
s.rdoc_options = ["--main", "README.md"]
|
|
18
18
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -111,9 +111,9 @@ extra_rdoc_files:
|
|
|
111
111
|
- History.txt
|
|
112
112
|
- Manifest.txt
|
|
113
113
|
files:
|
|
114
|
-
- .travis.yml
|
|
115
114
|
- COPYING
|
|
116
115
|
- Gemfile
|
|
116
|
+
- Gemfile.lock
|
|
117
117
|
- History.txt
|
|
118
118
|
- LICENSE
|
|
119
119
|
- Manifest.txt
|
|
@@ -151,6 +151,7 @@ files:
|
|
|
151
151
|
- lib/puma/configuration.rb
|
|
152
152
|
- lib/puma/const.rb
|
|
153
153
|
- lib/puma/control_cli.rb
|
|
154
|
+
- lib/puma/detect.rb
|
|
154
155
|
- lib/puma/events.rb
|
|
155
156
|
- lib/puma/jruby_restart.rb
|
|
156
157
|
- lib/puma/null_io.rb
|