aws-sdk 1.26.0 → 1.27.0
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.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/lib/aws/core/region.rb +1 -0
- data/lib/aws/version.rb +1 -1
- metadata +2 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd4d41a13cc87d68a0714327c7fcd25d13c34ac4
|
|
4
|
+
data.tar.gz: 8953ba9c3f69213247f28ac0d3315d05aaf46e99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: add042317cd684bad48295d09cdb3ac57664ee020fb30df822c50c7642a862ac35a81bb82484182d66689aa013b01feb0132b5ae1528b72cfff09ea877e093f7
|
|
7
|
+
data.tar.gz: fe434221b2fdbdac2203f1ecdde949d740e9b45731c0fb79dad29bd35940614f3452413a9861cf2d75ded4231c1a8f2f81f15021a6ce25eb8271cd4376c6e485
|
data/README.md
CHANGED
|
@@ -13,6 +13,12 @@ dependency (aws-sdk follows [semantic versioning](http://semver.org/)):
|
|
|
13
13
|
|
|
14
14
|
gem 'aws-sdk', '~> 1.0'
|
|
15
15
|
|
|
16
|
+
If you are using a version of Ruby older than 1.9, you may encounter problems with Nokogiri.
|
|
17
|
+
The authors dropped support for Ruby 1.8.x in Nokogiri 1.6. To use aws-sdk, you'll also have
|
|
18
|
+
to install or specify a version of Nokogiri prior to 1.6, like this:
|
|
19
|
+
|
|
20
|
+
gem 'nokogiri', '~> 1.5.0'
|
|
21
|
+
|
|
16
22
|
## Basic Configuration
|
|
17
23
|
|
|
18
24
|
You need to provide your AWS security credentials and choose a default region.
|
|
@@ -102,6 +108,11 @@ The SDK currently supports the following services:
|
|
|
102
108
|
<td>2011-02-01</td>
|
|
103
109
|
<td>Amazon CloudSearch</td>
|
|
104
110
|
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<td>AWS::CloudTrail</td>
|
|
113
|
+
<td>2013-11-01</td>
|
|
114
|
+
<td>AWS CloudTrail</td>
|
|
115
|
+
</tr>
|
|
105
116
|
<tr>
|
|
106
117
|
<td>AWS::CloudWatch</td>
|
|
107
118
|
<td>2010-08-01</td>
|
data/lib/aws/core/region.rb
CHANGED
|
@@ -28,6 +28,7 @@ module AWS
|
|
|
28
28
|
# @attr_reader [CloudFormation] cloud_formation
|
|
29
29
|
# @attr_reader [CloudFront] cloud_front
|
|
30
30
|
# @attr_reader [CloudSearch] cloud_search
|
|
31
|
+
# @attr_reader [CloudTrail] cloud_trail
|
|
31
32
|
# @attr_reader [CloudWatch] cloud_watch
|
|
32
33
|
# @attr_reader [DataPipeline] data_pipeline
|
|
33
34
|
# @attr_reader [DirectConnect] direct_connect
|
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.27.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: uuidtools
|
|
@@ -31,9 +31,6 @@ dependencies:
|
|
|
31
31
|
- - '>='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: 1.4.4
|
|
34
|
-
- - <
|
|
35
|
-
- !ruby/object:Gem::Version
|
|
36
|
-
version: 1.6.0
|
|
37
34
|
type: :runtime
|
|
38
35
|
prerelease: false
|
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -41,9 +38,6 @@ dependencies:
|
|
|
41
38
|
- - '>='
|
|
42
39
|
- !ruby/object:Gem::Version
|
|
43
40
|
version: 1.4.4
|
|
44
|
-
- - <
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1.6.0
|
|
47
41
|
- !ruby/object:Gem::Dependency
|
|
48
42
|
name: json
|
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|