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/test/helper.rb ADDED
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+
4
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ require 'fcgi'
7
+
8
+ class Test::Unit::TestCase
9
+ end
data/test/test_fcgi.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestFcgi < Test::Unit::TestCase
4
+ def test_something_for_real
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
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