rainbows 0.91.0 → 0.91.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.
data/GIT-VERSION-GEN CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v0.91.0.GIT
4
+ DEF_VER=v0.91.1.GIT
5
5
 
6
6
  LF='
7
7
  '
@@ -3,7 +3,7 @@
3
3
  module Rainbows
4
4
 
5
5
  module Const
6
- RAINBOWS_VERSION = '0.91.0'
6
+ RAINBOWS_VERSION = '0.91.1'
7
7
 
8
8
  include Unicorn::Const
9
9
 
data/rainbows.gemspec CHANGED
@@ -41,9 +41,9 @@ Gem::Specification.new do |s|
41
41
  s.test_files = test_files
42
42
 
43
43
  # we need Unicorn for the HTTP parser and process management
44
- # The HTTP parser in Unicorn < 0.96.1 did not use the Ruby
45
- # API correctly and resulted in a memory leak
46
- s.add_dependency(%q<unicorn>, ["~> 0.97.0"])
44
+ # The HTTP parser in Unicorn <= 0.97.0 was vulnerable to a remote DoS
45
+ # when exposed directly to untrusted clients.
46
+ s.add_dependency(%q<unicorn>, ["~> 0.97.1"])
47
47
 
48
48
  # Unicorn already depends on Rack
49
49
  # s.add_dependency(%q<rack>)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rainbows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.91.0
4
+ version: 0.91.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rainbows! hackers
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-03-01 00:00:00 +00:00
12
+ date: 2010-04-19 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 0.97.0
23
+ version: 0.97.1
24
24
  version:
25
25
  description: |-
26
26
  Rainbows! is an HTTP server for sleepy Rack applications. It is based on
@@ -74,7 +74,6 @@ extra_rdoc_files:
74
74
  - lib/rainbows/thread_spawn.rb
75
75
  - LICENSE
76
76
  - NEWS
77
- - rainbows.1
78
77
  - README
79
78
  - SIGNALS
80
79
  - TODO
@@ -215,7 +214,6 @@ files:
215
214
  - t/test-lib.sh
216
215
  - t/worker-follows-master-to-death.ru
217
216
  - vs_Unicorn
218
- - rainbows.1
219
217
  has_rdoc: true
220
218
  homepage: http://rainbows.rubyforge.org/
221
219
  licenses: []
data/rainbows.1 DELETED
File without changes