rat-hole 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +4 -0
- data/Rakefile +1 -1
- data/VERSION.yml +2 -1
- data/rat-hole.gemspec +4 -4
- metadata +3 -3
data/CHANGELOG.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ begin
|
|
9
9
|
s.homepage = "http://github.com/mikehale/rat-hole"
|
10
10
|
s.description = "Rat Hole is a handy library for creating a rack compliant http proxy that allows you to modify the request from the user and the response from the server."
|
11
11
|
s.authors = ["Michael Hale", "David Bogus", "Nathaniel Talbott"]
|
12
|
-
s.add_dependency('rack', '
|
12
|
+
s.add_dependency('rack', '>= 0.9.1')
|
13
13
|
s.has_rdoc = false
|
14
14
|
# s.extra_dev_deps << ['rr', '>= 0.6.0']
|
15
15
|
# s.extra_dev_deps << ['hpricot', '>= 0.6.164']
|
data/VERSION.yml
CHANGED
data/rat-hole.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rat-hole}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.11"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Michael Hale", "David Bogus", "Nathaniel Talbott"]
|
@@ -44,12 +44,12 @@ Gem::Specification.new do |s|
|
|
44
44
|
s.specification_version = 3
|
45
45
|
|
46
46
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
-
s.add_runtime_dependency(%q<rack>, ["
|
47
|
+
s.add_runtime_dependency(%q<rack>, [">= 0.9.1"])
|
48
48
|
else
|
49
|
-
s.add_dependency(%q<rack>, ["
|
49
|
+
s.add_dependency(%q<rack>, [">= 0.9.1"])
|
50
50
|
end
|
51
51
|
else
|
52
|
-
s.add_dependency(%q<rack>, ["
|
52
|
+
s.add_dependency(%q<rack>, [">= 0.9.1"])
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rat-hole
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Hale
|
@@ -20,9 +20,9 @@ dependencies:
|
|
20
20
|
version_requirement:
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
|
-
- -
|
23
|
+
- - ">="
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version:
|
25
|
+
version: 0.9.1
|
26
26
|
version:
|
27
27
|
description: Rat Hole is a handy library for creating a rack compliant http proxy that allows you to modify the request from the user and the response from the server.
|
28
28
|
email: mikehale@gmail.com
|