persistent_http 1.0.0 → 1.0.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/Rakefile +1 -0
- data/VERSION +1 -1
- data/persistent_http.gemspec +5 -2
- metadata +18 -5
data/Rakefile
CHANGED
|
@@ -10,6 +10,7 @@ begin
|
|
|
10
10
|
gemspec.email = "bradpardee@gmail.com"
|
|
11
11
|
gemspec.homepage = "http://github.com/bpardee/persistent_http"
|
|
12
12
|
gemspec.authors = ["Brad Pardee"]
|
|
13
|
+
gemspec.add_dependency 'gene_pool', [">= 1.0.1"]
|
|
13
14
|
end
|
|
14
15
|
rescue LoadError
|
|
15
16
|
puts "Jeweler not available. Install it with: gem install jeweler"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/persistent_http.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{persistent_http}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Brad Pardee"]
|
|
12
|
-
s.date = %q{2010-10-
|
|
12
|
+
s.date = %q{2010-10-04}
|
|
13
13
|
s.description = %q{Persistent HTTP connections using a connection pool}
|
|
14
14
|
s.email = %q{bradpardee@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -42,9 +42,12 @@ Gem::Specification.new do |s|
|
|
|
42
42
|
s.specification_version = 3
|
|
43
43
|
|
|
44
44
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
s.add_runtime_dependency(%q<gene_pool>, [">= 1.0.1"])
|
|
45
46
|
else
|
|
47
|
+
s.add_dependency(%q<gene_pool>, [">= 1.0.1"])
|
|
46
48
|
end
|
|
47
49
|
else
|
|
50
|
+
s.add_dependency(%q<gene_pool>, [">= 1.0.1"])
|
|
48
51
|
end
|
|
49
52
|
end
|
|
50
53
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Brad Pardee
|
|
@@ -14,10 +14,23 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-10-
|
|
17
|
+
date: 2010-10-04 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
|
-
dependencies:
|
|
20
|
-
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: gene_pool
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ">="
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
segments:
|
|
28
|
+
- 1
|
|
29
|
+
- 0
|
|
30
|
+
- 1
|
|
31
|
+
version: 1.0.1
|
|
32
|
+
type: :runtime
|
|
33
|
+
version_requirements: *id001
|
|
21
34
|
description: Persistent HTTP connections using a connection pool
|
|
22
35
|
email: bradpardee@gmail.com
|
|
23
36
|
executables: []
|