rainbows 0.95.0 → 0.95.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +33 -1
- data/GIT-VERSION-FILE +1 -1
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +1 -1
- data/NEWS +7 -0
- data/lib/rainbows/const.rb +1 -1
- data/rainbows.gemspec +2 -2
- data/t/test_isolate.rb +2 -2
- metadata +7 -8
data/ChangeLog
CHANGED
@@ -1,5 +1,37 @@
|
|
1
|
-
ChangeLog from git://git.bogomips.org/rainbows.git (v0.94.0..v0.95.
|
1
|
+
ChangeLog from git://git.bogomips.org/rainbows.git (v0.94.0..v0.95.1)
|
2
2
|
|
3
|
+
commit 399bbdb5c5e7cf9e716aacd9f0763813edf52423
|
4
|
+
Author: Eric Wong <normalperson@yhbt.net>
|
5
|
+
Date: Sun Jul 11 02:52:48 2010 +0000
|
6
|
+
|
7
|
+
Rainbows! v0.95.1 - depend on newer Unicorn
|
8
|
+
|
9
|
+
Eric Wong (3):
|
10
|
+
test_isolate: document why we test with Rack 1.1.0
|
11
|
+
doc: make RDoc skip private methods
|
12
|
+
bump Unicorn dependency to 1.1.1
|
13
|
+
|
14
|
+
commit fa57995d922f0bcd63472c7421716ce7a8eee5cc
|
15
|
+
Author: Eric Wong <normalperson@yhbt.net>
|
16
|
+
Date: Sun Jul 11 02:51:10 2010 +0000
|
17
|
+
|
18
|
+
bump Unicorn dependency to 1.1.1
|
19
|
+
|
20
|
+
This avoids costant resolution problems on client EOF
|
21
|
+
during input processing.
|
22
|
+
|
23
|
+
commit 35ef536124ef91a20a1093f6161b57c2a2b9f358
|
24
|
+
Author: Eric Wong <normalperson@yhbt.net>
|
25
|
+
Date: Sat Jul 10 19:00:56 2010 +0000
|
26
|
+
|
27
|
+
doc: make RDoc skip private methods
|
28
|
+
|
29
|
+
commit 5ce1496ed684aeddf17074280f5023f8debead01
|
30
|
+
Author: Eric Wong <normalperson@yhbt.net>
|
31
|
+
Date: Sat Jul 10 19:00:46 2010 +0000
|
32
|
+
|
33
|
+
test_isolate: document why we test with Rack 1.1.0
|
34
|
+
|
3
35
|
commit 5308c68e7e5b9d464f9f8c4252beff2d964bca1b
|
4
36
|
Author: Eric Wong <normalperson@yhbt.net>
|
5
37
|
Date: Sat Jul 10 06:13:21 2010 +0000
|
data/GIT-VERSION-FILE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
GIT_VERSION = 0.95.
|
1
|
+
GIT_VERSION = 0.95.1
|
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
@@ -82,7 +82,7 @@ atom = <link rel="alternate" title="Atom feed" href="$(1)" \
|
|
82
82
|
doc: .document NEWS ChangeLog
|
83
83
|
for i in $(man1_rdoc); do echo > $$i; done
|
84
84
|
find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
|
85
|
-
rdoc -
|
85
|
+
rdoc -t "$(shell sed -ne '1s/^= //p' README)"
|
86
86
|
install -m644 COPYING doc/COPYING
|
87
87
|
install -m644 $(shell grep '^[A-Z]' .document) doc/
|
88
88
|
$(MAKE) -C Documentation install-html install-man
|
data/NEWS
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
=== 0.95.1 / 2010-07-11 02:53 UTC
|
2
|
+
|
3
|
+
Eric Wong (3):
|
4
|
+
test_isolate: document why we test with Rack 1.1.0
|
5
|
+
doc: make RDoc skip private methods
|
6
|
+
bump Unicorn dependency to 1.1.1
|
7
|
+
|
1
8
|
=== 0.95.0 / 2010-07-10 08:45 UTC
|
2
9
|
|
3
10
|
In addition to the 1.9-only IO.copy_stream, the new sendfile
|
data/lib/rainbows/const.rb
CHANGED
data/rainbows.gemspec
CHANGED
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
|
|
34
34
|
s.files = manifest
|
35
35
|
s.homepage = %q{http://rainbows.rubyforge.org/}
|
36
36
|
s.summary = %q{Unicorn for sleepy apps and slow clients}
|
37
|
-
s.rdoc_options = [ "-
|
37
|
+
s.rdoc_options = [ "-t", "Rainbows! #{s.summary}" ]
|
38
38
|
s.require_paths = %w(lib)
|
39
39
|
s.rubyforge_project = %q{rainbows}
|
40
40
|
|
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
|
|
46
46
|
# we need Unicorn for the HTTP parser and process management
|
47
47
|
# Unicorn 0.991.0 handles config.ru when started outside of
|
48
48
|
# the prespecified working_directory
|
49
|
-
s.add_dependency(%q<unicorn>, [">= 1.1.
|
49
|
+
s.add_dependency(%q<unicorn>, [">= 1.1.1", "< 2.0.0"])
|
50
50
|
s.add_development_dependency(%q<isolate>, "~> 2.1.0")
|
51
51
|
|
52
52
|
# optional runtime dependencies depending on configuration
|
data/t/test_isolate.rb
CHANGED
@@ -14,8 +14,8 @@ old_out = $stdout.dup
|
|
14
14
|
$stdout.reopen($stderr)
|
15
15
|
|
16
16
|
Isolate.now!(opts) do
|
17
|
-
gem 'rack', '1.1.0'
|
18
|
-
gem 'unicorn', '1.1.
|
17
|
+
gem 'rack', '1.1.0' # Cramp currently requires ~> 1.1.0
|
18
|
+
gem 'unicorn', '1.1.1'
|
19
19
|
|
20
20
|
if engine == "ruby"
|
21
21
|
gem 'sendfile', '1.0.0' # next Rubinius should support this
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rainbows
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 353
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 95
|
9
|
-
-
|
10
|
-
version: 0.95.
|
9
|
+
- 1
|
10
|
+
version: 0.95.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Rainbows! hackers
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-07-
|
18
|
+
date: 2010-07-11 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -41,12 +41,12 @@ dependencies:
|
|
41
41
|
requirements:
|
42
42
|
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
|
-
hash:
|
44
|
+
hash: 17
|
45
45
|
segments:
|
46
46
|
- 1
|
47
47
|
- 1
|
48
|
-
-
|
49
|
-
version: 1.1.
|
48
|
+
- 1
|
49
|
+
version: 1.1.1
|
50
50
|
- - <
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
hash: 15
|
@@ -318,7 +318,6 @@ licenses: []
|
|
318
318
|
|
319
319
|
post_install_message:
|
320
320
|
rdoc_options:
|
321
|
-
- -Na
|
322
321
|
- -t
|
323
322
|
- Rainbows! Unicorn for sleepy apps and slow clients
|
324
323
|
require_paths:
|