rainbows 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +11 -0
- data/.gitignore +18 -0
- data/COPYING +339 -0
- data/DEPLOY +29 -0
- data/Documentation/.gitignore +5 -0
- data/Documentation/GNUmakefile +30 -0
- data/Documentation/rainbows.1.txt +159 -0
- data/FAQ +50 -0
- data/GIT-VERSION-GEN +41 -0
- data/GNUmakefile +156 -0
- data/LICENSE +55 -0
- data/README +122 -0
- data/Rakefile +103 -0
- data/SIGNALS +94 -0
- data/TODO +20 -0
- data/TUNING +31 -0
- data/bin/rainbows +166 -0
- data/lib/rainbows.rb +53 -0
- data/lib/rainbows/base.rb +69 -0
- data/lib/rainbows/const.rb +24 -0
- data/lib/rainbows/http_response.rb +35 -0
- data/lib/rainbows/http_server.rb +47 -0
- data/lib/rainbows/revactor.rb +158 -0
- data/lib/rainbows/revactor/tee_input.rb +44 -0
- data/lib/rainbows/thread_pool.rb +96 -0
- data/lib/rainbows/thread_spawn.rb +79 -0
- data/local.mk.sample +54 -0
- data/rainbows.gemspec +47 -0
- data/setup.rb +1586 -0
- data/t/.gitignore +4 -0
- data/t/GNUmakefile +64 -0
- data/t/bin/unused_listen +39 -0
- data/t/sha1.ru +17 -0
- data/t/t0000-basic.sh +18 -0
- data/t/t1000-thread-pool-basic.sh +53 -0
- data/t/t2000-thread-spawn-basic.sh +50 -0
- data/t/t3000-revactor-basic.sh +52 -0
- data/t/t3100-revactor-tee-input.sh +49 -0
- data/t/test-lib.sh +41 -0
- data/vs_Unicorn +48 -0
- metadata +135 -0
metadata
ADDED
@@ -0,0 +1,135 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rainbows
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Wong
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-05 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rack
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: unicorn
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.93.1
|
34
|
+
version:
|
35
|
+
description: \Rainbows! is a HTTP server for {Rack}[http://rack.rubyforge.org/] applications. It is based on {Unicorn}[http://unicorn.bogomips.org/], but designed to handle applications that expect long request/response times and/or slow clients. For Rack applications not heavily bound by slow external dependencies, consider Unicorn instead as it simpler and easier to debug.
|
36
|
+
email: rainbows-talk@rubyforge.org
|
37
|
+
executables:
|
38
|
+
- rainbows
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files:
|
42
|
+
- README
|
43
|
+
- LICENSE
|
44
|
+
- DEPLOY
|
45
|
+
- lib/rainbows.rb
|
46
|
+
- lib/rainbows/base.rb
|
47
|
+
- lib/rainbows/const.rb
|
48
|
+
- lib/rainbows/http_response.rb
|
49
|
+
- lib/rainbows/http_server.rb
|
50
|
+
- lib/rainbows/revactor.rb
|
51
|
+
- lib/rainbows/revactor/tee_input.rb
|
52
|
+
- lib/rainbows/thread_pool.rb
|
53
|
+
- lib/rainbows/thread_spawn.rb
|
54
|
+
- ChangeLog
|
55
|
+
- NEWS
|
56
|
+
- TODO
|
57
|
+
- FAQ
|
58
|
+
- TUNING
|
59
|
+
- vs_Unicorn
|
60
|
+
files:
|
61
|
+
- .document
|
62
|
+
- .gitignore
|
63
|
+
- .manifest
|
64
|
+
- COPYING
|
65
|
+
- ChangeLog
|
66
|
+
- DEPLOY
|
67
|
+
- Documentation/.gitignore
|
68
|
+
- Documentation/GNUmakefile
|
69
|
+
- Documentation/rainbows.1.txt
|
70
|
+
- FAQ
|
71
|
+
- GIT-VERSION-FILE
|
72
|
+
- GIT-VERSION-GEN
|
73
|
+
- GNUmakefile
|
74
|
+
- LICENSE
|
75
|
+
- NEWS
|
76
|
+
- README
|
77
|
+
- Rakefile
|
78
|
+
- SIGNALS
|
79
|
+
- TODO
|
80
|
+
- TUNING
|
81
|
+
- bin/rainbows
|
82
|
+
- lib/rainbows.rb
|
83
|
+
- lib/rainbows/base.rb
|
84
|
+
- lib/rainbows/const.rb
|
85
|
+
- lib/rainbows/http_response.rb
|
86
|
+
- lib/rainbows/http_server.rb
|
87
|
+
- lib/rainbows/revactor.rb
|
88
|
+
- lib/rainbows/revactor/tee_input.rb
|
89
|
+
- lib/rainbows/thread_pool.rb
|
90
|
+
- lib/rainbows/thread_spawn.rb
|
91
|
+
- local.mk.sample
|
92
|
+
- man/man1/rainbows.1
|
93
|
+
- rainbows.gemspec
|
94
|
+
- setup.rb
|
95
|
+
- t/.gitignore
|
96
|
+
- t/GNUmakefile
|
97
|
+
- t/bin/unused_listen
|
98
|
+
- t/sha1.ru
|
99
|
+
- t/t0000-basic.sh
|
100
|
+
- t/t1000-thread-pool-basic.sh
|
101
|
+
- t/t2000-thread-spawn-basic.sh
|
102
|
+
- t/t3000-revactor-basic.sh
|
103
|
+
- t/t3100-revactor-tee-input.sh
|
104
|
+
- t/test-lib.sh
|
105
|
+
- vs_Unicorn
|
106
|
+
has_rdoc: false
|
107
|
+
homepage: http://rainbows.rubyforge.org/
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options:
|
110
|
+
- -Na
|
111
|
+
- -t
|
112
|
+
- Rainbows! Unicorn for slow apps and slow clients
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: "0"
|
120
|
+
version:
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: "0"
|
126
|
+
version:
|
127
|
+
requirements: []
|
128
|
+
|
129
|
+
rubyforge_project: rainbows
|
130
|
+
rubygems_version: 1.3.1
|
131
|
+
signing_key:
|
132
|
+
specification_version: 2
|
133
|
+
summary: Unicorn for slow apps and slow clients
|
134
|
+
test_files: []
|
135
|
+
|