rack-streaming-proxy 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ # The list of files that should be ignored by Mr Bones.
2
+ # Lines that start with '#' are comments.
3
+ #
4
+ # A .gitignore file can be used instead by setting it as the ignore
5
+ # file in your Rakefile:
6
+ #
7
+ # Bones {
8
+ # ignore_file '.gitignore'
9
+ # }
10
+ #
11
+ # For a project with a C extension, the following would be a good set of
12
+ # exclude patterns (uncomment them if you want to use them):
13
+ # *.[oa]
14
+ # *~
15
+ announcement.txt
16
+ coverage
17
+ doc
18
+ pkg
data/Rakefile CHANGED
@@ -17,7 +17,7 @@ Bones {
17
17
  url 'http://github.com/aniero/rack-streaming-proxy'
18
18
  version Rack::StreamingProxy::VERSION
19
19
  ignore_file '.gitignore'
20
- depend_on "rack", :version => "~> 1.1.0"
20
+ depend_on "rack", :version => ">= 1.0"
21
21
  depend_on "servolux", :version => "~> 0.8.1"
22
22
  depend_on "rack-test", :version => "~> 0.5.1", :development => true
23
23
  spec {
@@ -4,7 +4,7 @@ module Rack
4
4
  class Error < StandardError; end
5
5
 
6
6
  # :stopdoc:
7
- VERSION = '1.0.2'
7
+ VERSION = '1.0.3'
8
8
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
9
9
  PATH = ::File.expand_path(::File.join(::File.dirname(__FILE__), "..", "..")) + ::File::SEPARATOR
10
10
  # :startdoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-streaming-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Witmer
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-09 00:00:00 -08:00
12
+ date: 2010-02-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -18,9 +18,9 @@ dependencies:
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ~>
21
+ - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 1.1.0
23
+ version: "1.0"
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: servolux
@@ -62,6 +62,7 @@ extra_rdoc_files:
62
62
  - History.txt
63
63
  - README.txt
64
64
  files:
65
+ - .gitignore
65
66
  - History.txt
66
67
  - README.txt
67
68
  - Rakefile