ruby-fcgi 0.8.8
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/.config +20 -0
- data/.document +5 -0
- data/.gitignore +26 -0
- data/ChangeLog +33 -0
- data/InstalledFiles +1 -0
- data/LICENSE +20 -0
- data/README +110 -0
- data/README.rdoc +110 -0
- data/README.signals +76 -0
- data/Rakefile +55 -0
- data/VERSION +1 -0
- data/ext/fcgi/MANIFEST +3 -0
- data/ext/fcgi/Makefile +181 -0
- data/ext/fcgi/extconf.rb +7 -0
- data/ext/fcgi/fcgi.c +558 -0
- data/install.rb +1551 -0
- data/lib/fcgi.rb +618 -0
- data/test/helper.rb +9 -0
- data/test/test_fcgi.rb +7 -0
- metadata +78 -0
data/test/helper.rb
ADDED
data/test/test_fcgi.rb
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-fcgi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.8
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- saks
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-22 00:00:00 +03:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. For more information, see http://www.fastcgi.com/.
|
17
|
+
email: saksmlz@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/fcgi/extconf.rb
|
22
|
+
extra_rdoc_files:
|
23
|
+
- ChangeLog
|
24
|
+
- LICENSE
|
25
|
+
- README
|
26
|
+
- README.rdoc
|
27
|
+
- README.signals
|
28
|
+
files:
|
29
|
+
- .config
|
30
|
+
- .document
|
31
|
+
- .gitignore
|
32
|
+
- ChangeLog
|
33
|
+
- InstalledFiles
|
34
|
+
- LICENSE
|
35
|
+
- README
|
36
|
+
- README.rdoc
|
37
|
+
- README.signals
|
38
|
+
- Rakefile
|
39
|
+
- VERSION
|
40
|
+
- ext/fcgi/MANIFEST
|
41
|
+
- ext/fcgi/Makefile
|
42
|
+
- ext/fcgi/extconf.rb
|
43
|
+
- ext/fcgi/fcgi.c
|
44
|
+
- install.rb
|
45
|
+
- lib/fcgi.rb
|
46
|
+
- test/helper.rb
|
47
|
+
- test/test_fcgi.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://github.com/saks/fcgi
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message:
|
53
|
+
rdoc_options:
|
54
|
+
- --charset=UTF-8
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
version:
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: "0"
|
68
|
+
version:
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.3.5
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: FastCGI library for Ruby.
|
76
|
+
test_files:
|
77
|
+
- test/test_fcgi.rb
|
78
|
+
- test/helper.rb
|