s3lib 0.1.0 → 0.1.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.yml +1 -1
- data/s3lib.gemspec +4 -1
- metadata +18 -5
data/Rakefile
CHANGED
|
@@ -18,6 +18,7 @@ begin
|
|
|
18
18
|
gemspec.homepage = 'http://thes3cookbook.com'
|
|
19
19
|
gemspec.description = "This library forms the basis for building a library to talk to Amazon S3 using Ruby. It is used as an example of how to build an Amazon S3 interface in The S3 Cookbook (http://thes3cookbook.com)"
|
|
20
20
|
gemspec.authors = ["Scott Patten"]
|
|
21
|
+
gemspec.add_dependency 'rest-open-uri'
|
|
21
22
|
end
|
|
22
23
|
rescue LoadError
|
|
23
24
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION.yml
CHANGED
data/s3lib.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{s3lib}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Scott Patten"]
|
|
@@ -66,9 +66,12 @@ Gem::Specification.new do |s|
|
|
|
66
66
|
s.specification_version = 3
|
|
67
67
|
|
|
68
68
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
69
|
+
s.add_runtime_dependency(%q<rest-open-uri>, [">= 0"])
|
|
69
70
|
else
|
|
71
|
+
s.add_dependency(%q<rest-open-uri>, [">= 0"])
|
|
70
72
|
end
|
|
71
73
|
else
|
|
74
|
+
s.add_dependency(%q<rest-open-uri>, [">= 0"])
|
|
72
75
|
end
|
|
73
76
|
end
|
|
74
77
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: s3lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Scott Patten
|
|
@@ -17,8 +17,21 @@ cert_chain: []
|
|
|
17
17
|
|
|
18
18
|
date: 2011-11-11 00:00:00 -08:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: rest-open-uri
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
22
35
|
description: This library forms the basis for building a library to talk to Amazon S3 using Ruby. It is used as an example of how to build an Amazon S3 interface in The S3 Cookbook (http://thes3cookbook.com)
|
|
23
36
|
email: scott@scottpatten.ca
|
|
24
37
|
executables:
|