simple_aws 1.2.1 → 1.2.2
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/Gemfile +1 -1
- data/lib/simple_aws/core/connection.rb +1 -1
- data/simple_aws.gemspec +3 -3
- data/test/test_helper.rb +2 -1
- metadata +13 -7
data/Gemfile
CHANGED
data/simple_aws.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "simple_aws"
|
|
3
|
-
s.version = "1.2.
|
|
3
|
+
s.version = "1.2.2"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.authors = ["Jason Roelofs"]
|
|
6
6
|
s.email = ["jasongroelofs@gmail.com"]
|
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.summary = "The simplest and easiest to use AWS communication library"
|
|
11
11
|
s.description = "SimpleAWS is a clean, simple, and forward compatible library for talking to the Amazon Web Service APIs."
|
|
12
12
|
|
|
13
|
-
s.add_dependency "nokogiri", "
|
|
14
|
-
s.add_dependency "httparty", "~> 0.
|
|
13
|
+
s.add_dependency "nokogiri", [">= 1.5.0", "< 2.0"]
|
|
14
|
+
s.add_dependency "httparty", "~> 0.11.0"
|
|
15
15
|
|
|
16
16
|
s.add_dependency "jruby-openssl" if RUBY_PLATFORM == 'java'
|
|
17
17
|
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,24 +9,30 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-09-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: nokogiri
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
|
-
- -
|
|
19
|
+
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: 1.5.0
|
|
22
|
+
- - <
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: '2.0'
|
|
22
25
|
type: :runtime
|
|
23
26
|
prerelease: false
|
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
28
|
none: false
|
|
26
29
|
requirements:
|
|
27
|
-
- -
|
|
30
|
+
- - ! '>='
|
|
28
31
|
- !ruby/object:Gem::Version
|
|
29
32
|
version: 1.5.0
|
|
33
|
+
- - <
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '2.0'
|
|
30
36
|
- !ruby/object:Gem::Dependency
|
|
31
37
|
name: httparty
|
|
32
38
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -34,7 +40,7 @@ dependencies:
|
|
|
34
40
|
requirements:
|
|
35
41
|
- - ~>
|
|
36
42
|
- !ruby/object:Gem::Version
|
|
37
|
-
version: 0.
|
|
43
|
+
version: 0.11.0
|
|
38
44
|
type: :runtime
|
|
39
45
|
prerelease: false
|
|
40
46
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -42,7 +48,7 @@ dependencies:
|
|
|
42
48
|
requirements:
|
|
43
49
|
- - ~>
|
|
44
50
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: 0.
|
|
51
|
+
version: 0.11.0
|
|
46
52
|
description: SimpleAWS is a clean, simple, and forward compatible library for talking
|
|
47
53
|
to the Amazon Web Service APIs.
|
|
48
54
|
email:
|
|
@@ -148,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
154
|
version: '0'
|
|
149
155
|
requirements: []
|
|
150
156
|
rubyforge_project:
|
|
151
|
-
rubygems_version: 1.8.
|
|
157
|
+
rubygems_version: 1.8.25
|
|
152
158
|
signing_key:
|
|
153
159
|
specification_version: 3
|
|
154
160
|
summary: The simplest and easiest to use AWS communication library
|