fcgi 0.9.2 → 0.9.2.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.
- checksums.yaml +4 -4
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/ext/fcgi/fcgi.c +1 -0
- data/fcgi.gemspec +3 -2
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1387d847e81c0bee272b0fae6c040e24503147b8
|
|
4
|
+
data.tar.gz: 71dbe8e5af257cee1c73d0bebc286dc7af86439d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2009fff645f8571a4d4e71085b021defab6bc3e7073305fc3d3b08c9ed00261b9e050568df5bcabc93bcebd03dbfa98fb58d8e2055b7c87c57fcf762c638b20
|
|
7
|
+
data.tar.gz: fec23575158c5bb3d68c7c483ba27eb6493b97f571c2117213f9a99ec992f80c334b662038252b8e22d5fa8785e9690393cacac55376f1798b993ec368fc647c
|
data/README.rdoc
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.2
|
|
1
|
+
0.9.2.1
|
data/ext/fcgi/fcgi.c
CHANGED
data/fcgi.gemspec
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{fcgi}
|
|
3
|
-
s.version = "0.9.2"
|
|
3
|
+
s.version = "0.9.2.1"
|
|
4
|
+
s.license = "MIT"
|
|
4
5
|
|
|
5
6
|
s.authors = [%q{mva}]
|
|
6
|
-
s.date = %q{2013-
|
|
7
|
+
s.date = %q{2013-09-30}
|
|
7
8
|
s.description = %q{FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. This version aims to be compatible with both 1.8.x and 1.9.x versions of Ruby, and also will be ported to 2.0.x.}
|
|
8
9
|
s.email = %q{mva@mva.name}
|
|
9
10
|
s.extensions = [%q{ext/fcgi/extconf.rb}]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fcgi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.2
|
|
4
|
+
version: 0.9.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mva
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: FastCGI is a language independent, scalable, open extension to CGI that
|
|
14
14
|
provides high performance without the limitations of server specific APIs. This
|
|
@@ -36,7 +36,8 @@ files:
|
|
|
36
36
|
- test/helper.rb
|
|
37
37
|
- test/test_fcgi.rb
|
|
38
38
|
homepage: http://github.com/alphallc/ruby-fcgi-ng
|
|
39
|
-
licenses:
|
|
39
|
+
licenses:
|
|
40
|
+
- MIT
|
|
40
41
|
metadata: {}
|
|
41
42
|
post_install_message:
|
|
42
43
|
rdoc_options:
|