steamcannon-aws 2.3.26.1 → 2.3.26.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/lib/acf/right_acf_interface.rb +2 -3
- data/lib/ec2/right_ec2.rb +3 -3
- data/lib/ec2/right_mon_interface.rb +2 -3
- data/lib/s3/right_s3_interface.rb +62 -62
- data/lib/sqs/right_sqs_interface.rb +3 -5
- metadata +139 -132
@@ -141,9 +141,8 @@ module Aws
|
|
141
141
|
# Sends request to Amazon and parses the response.
|
142
142
|
# Raises AwsError if any banana happened.
|
143
143
|
def request_info(request, parser, &block) # :nodoc:
|
144
|
-
|
145
|
-
|
146
|
-
request_info_impl(thread[:acf_connection], @@bench, request, parser, &block)
|
144
|
+
conn = get_conn(:acf_connection, @params, @logger)
|
145
|
+
request_info_impl(conn, @@bench, request, parser, &block)
|
147
146
|
end
|
148
147
|
|
149
148
|
#-----------------------------------------------------------------
|
data/lib/ec2/right_ec2.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
1
2
|
#
|
2
3
|
# Copyright (c) 2007-2008 RightScale Inc
|
3
4
|
#
|
@@ -161,9 +162,8 @@ module Aws
|
|
161
162
|
# Sends request to Amazon and parses the response
|
162
163
|
# Raises AwsError if any banana happened
|
163
164
|
def request_info(request, parser) #:nodoc:
|
164
|
-
|
165
|
-
|
166
|
-
request_info_impl(thread[:ec2_connection], @@bench, request, parser)
|
165
|
+
conn = get_conn(:ec2_connection, @params, @logger)
|
166
|
+
request_info_impl(conn, @@bench, request, parser)
|
167
167
|
end
|
168
168
|
|
169
169
|
def hash_params(prefix, list) #:nodoc:
|
@@ -80,9 +80,8 @@ module Aws
|
|
80
80
|
# Sends request to Amazon and parses the response
|
81
81
|
# Raises AwsError if any banana happened
|
82
82
|
def request_info(request, parser)
|
83
|
-
|
84
|
-
|
85
|
-
request_info_impl(thread[:elb_connection], @@bench, request, parser)
|
83
|
+
conn = get_conn(:elb_connection, @params, @logger)
|
84
|
+
request_info_impl(conn, @@bench, request, parser)
|
86
85
|
end
|
87
86
|
|
88
87
|
#-----------------------------------------------------------------
|
@@ -29,17 +29,17 @@ module Aws
|
|
29
29
|
|
30
30
|
include AwsBaseInterface
|
31
31
|
|
32
|
-
DEFAULT_HOST
|
33
|
-
DEFAULT_PORT
|
34
|
-
DEFAULT_PROTOCOL
|
35
|
-
DEFAULT_SERVICE
|
36
|
-
REQUEST_TTL
|
37
|
-
DEFAULT_EXPIRES_AFTER
|
38
|
-
ONE_YEAR_IN_SECONDS
|
39
|
-
AMAZON_HEADER_PREFIX
|
40
|
-
AMAZON_METADATA_PREFIX
|
41
|
-
|
42
|
-
@@bench
|
32
|
+
DEFAULT_HOST = 's3.amazonaws.com'
|
33
|
+
DEFAULT_PORT = 443
|
34
|
+
DEFAULT_PROTOCOL = 'https'
|
35
|
+
DEFAULT_SERVICE = '/'
|
36
|
+
REQUEST_TTL = 30
|
37
|
+
DEFAULT_EXPIRES_AFTER = 1 * 24 * 60 * 60 # One day's worth of seconds
|
38
|
+
ONE_YEAR_IN_SECONDS = 365 * 24 * 60 * 60
|
39
|
+
AMAZON_HEADER_PREFIX = 'x-amz-'
|
40
|
+
AMAZON_METADATA_PREFIX = 'x-amz-meta-'
|
41
|
+
|
42
|
+
@@bench = AwsBenchmarkingBlock.new
|
43
43
|
|
44
44
|
def self.bench_xml
|
45
45
|
@@bench.xml
|
@@ -87,17 +87,17 @@ module Aws
|
|
87
87
|
#-----------------------------------------------------------------
|
88
88
|
# Produces canonical string for signing.
|
89
89
|
def canonical_string(method, path, headers={}, expires=nil) # :nodoc:
|
90
|
-
s3_headers
|
90
|
+
s3_headers = {}
|
91
91
|
headers.each do |key, value|
|
92
92
|
key = key.downcase
|
93
93
|
s3_headers[key] = value.join("").strip if key[/^#{AMAZON_HEADER_PREFIX}|^content-md5$|^content-type$|^date$/o]
|
94
94
|
end
|
95
95
|
s3_headers['content-type'] ||= ''
|
96
96
|
s3_headers['content-md5'] ||= ''
|
97
|
-
s3_headers['date']
|
98
|
-
s3_headers['date']
|
97
|
+
s3_headers['date'] = '' if s3_headers.has_key? 'x-amz-date'
|
98
|
+
s3_headers['date'] = expires if expires
|
99
99
|
# prepare output string
|
100
|
-
out_string
|
100
|
+
out_string = "#{method}\n"
|
101
101
|
s3_headers.sort { |a, b| a[0] <=> b[0] }.each do |key, value|
|
102
102
|
out_string << (key[/^#{AMAZON_HEADER_PREFIX}/o] ? "#{key}:#{value}\n" : "#{value}\n")
|
103
103
|
end
|
@@ -123,8 +123,8 @@ module Aws
|
|
123
123
|
|
124
124
|
def fetch_request_params(headers) #:nodoc:
|
125
125
|
# default server to use
|
126
|
-
server
|
127
|
-
service
|
126
|
+
server = @params[:server]
|
127
|
+
service = @params[:service].to_s
|
128
128
|
service.chop! if service[%r{/$}] # remove trailing '/' from service
|
129
129
|
# extract bucket name and check it's dns compartibility
|
130
130
|
headers[:url].to_s[%r{^([a-z0-9._-]*)(/[^?]*)?(\?.+)?}i]
|
@@ -148,22 +148,22 @@ module Aws
|
|
148
148
|
def generate_rest_request(method, headers) # :nodoc:
|
149
149
|
# calculate request data
|
150
150
|
server, path, path_to_sign = fetch_request_params(headers)
|
151
|
-
data
|
151
|
+
data = headers[:data]
|
152
152
|
# remove unset(==optional) and symbolyc keys
|
153
153
|
headers.each { |key, value| headers.delete(key) if (value.nil? || key.is_a?(Symbol)) }
|
154
154
|
#
|
155
|
-
headers['content-type']
|
156
|
-
headers['date']
|
155
|
+
headers['content-type'] ||= ''
|
156
|
+
headers['date'] = Time.now.httpdate
|
157
157
|
# create request
|
158
|
-
request
|
158
|
+
request = "Net::HTTP::#{method.capitalize}".constantize.new(path)
|
159
159
|
request.body = data if data
|
160
160
|
# set request headers and meta headers
|
161
161
|
headers.each { |key, value| request[key.to_s] = value }
|
162
162
|
#generate auth strings
|
163
|
-
auth_string
|
164
|
-
signature
|
163
|
+
auth_string = canonical_string(request.method, path_to_sign, request.to_hash)
|
164
|
+
signature = AwsUtils::sign(@aws_secret_access_key, auth_string)
|
165
165
|
# set other headers
|
166
|
-
request['Authorization']
|
166
|
+
request['Authorization'] = "AWS #{@aws_access_key_id}:#{signature}"
|
167
167
|
# prepare output hash
|
168
168
|
{:request => request,
|
169
169
|
:server => server,
|
@@ -202,9 +202,9 @@ module Aws
|
|
202
202
|
# s3.create_bucket('my-awesome-bucket-eu', :location => :eu) #=> true
|
203
203
|
#
|
204
204
|
def create_bucket(bucket, headers={})
|
205
|
-
data
|
205
|
+
data = nil
|
206
206
|
unless headers[:location].blank?
|
207
|
-
location =
|
207
|
+
location = headers[:location].to_s
|
208
208
|
location.upcase! if location == 'eu'
|
209
209
|
data = "<CreateBucketConfiguration><LocationConstraint>#{location}</LocationConstraint></CreateBucketConfiguration>"
|
210
210
|
end
|
@@ -291,7 +291,7 @@ module Aws
|
|
291
291
|
# 'max-keys' => "5"}, ..., {...}]
|
292
292
|
#
|
293
293
|
def list_bucket(bucket, options={}, headers={})
|
294
|
-
bucket
|
294
|
+
bucket += '?'+options.map { |k, v| "#{k.to_s}=#{CGI::escape v.to_s}" }.join('&') unless options.blank?
|
295
295
|
req_hash = generate_rest_request('GET', headers.merge(:url=>bucket))
|
296
296
|
request_info(req_hash, S3ListBucketParser.new(:logger => @logger))
|
297
297
|
rescue
|
@@ -328,8 +328,8 @@ module Aws
|
|
328
328
|
def incrementally_list_bucket(bucket, options={}, headers={}, &block)
|
329
329
|
internal_options = options.symbolize_keys
|
330
330
|
begin
|
331
|
-
internal_bucket
|
332
|
-
internal_bucket
|
331
|
+
internal_bucket = bucket.dup
|
332
|
+
internal_bucket += '?'+internal_options.map { |k, v| "#{k.to_s}=#{CGI::escape v.to_s}" }.join('&') unless internal_options.blank?
|
333
333
|
req_hash = generate_rest_request('GET', headers.merge(:url=>internal_bucket))
|
334
334
|
response = request_info(req_hash, S3ImprovedListBucketParser.new(:logger => @logger))
|
335
335
|
there_are_more_keys = response[:is_truncated]
|
@@ -411,8 +411,8 @@ module Aws
|
|
411
411
|
if (data_size >= USE_100_CONTINUE_PUT_SIZE)
|
412
412
|
headers['expect'] = '100-continue'
|
413
413
|
end
|
414
|
-
req_hash
|
415
|
-
|
414
|
+
req_hash = generate_rest_request('PUT', headers.merge(:url =>"#{bucket}/#{CGI::escape key}", :data=>data,
|
415
|
+
'Content-Length' => data_size.to_s))
|
416
416
|
request_info(req_hash, RightHttp2xxParser.new)
|
417
417
|
rescue
|
418
418
|
on_exception
|
@@ -830,9 +830,9 @@ module Aws
|
|
830
830
|
# calculate request data
|
831
831
|
server, path, path_to_sign = fetch_request_params(headers)
|
832
832
|
# expiration time
|
833
|
-
expires
|
834
|
-
expires
|
835
|
-
expires
|
833
|
+
expires ||= DEFAULT_EXPIRES_AFTER
|
834
|
+
expires = Time.now.utc + expires if expires.is_a?(Fixnum) && (expires < ONE_YEAR_IN_SECONDS)
|
835
|
+
expires = expires.to_i
|
836
836
|
# remove unset(==optional) and symbolyc keys
|
837
837
|
headers.each { |key, value| headers.delete(key) if (value.nil? || key.is_a?(Symbol)) }
|
838
838
|
#generate auth strings
|
@@ -993,11 +993,11 @@ module Aws
|
|
993
993
|
def tagend(name)
|
994
994
|
case name
|
995
995
|
when 'ID';
|
996
|
-
@owner[:owner_id]
|
996
|
+
@owner[:owner_id] = @text
|
997
997
|
when 'DisplayName';
|
998
|
-
@owner[:owner_display_name]
|
998
|
+
@owner[:owner_display_name] = @text
|
999
999
|
when 'Name';
|
1000
|
-
@current_bucket[:name]
|
1000
|
+
@current_bucket[:name] = @text
|
1001
1001
|
when 'CreationDate';
|
1002
1002
|
@current_bucket[:creation_date] = @text
|
1003
1003
|
when 'Bucket';
|
@@ -1021,34 +1021,34 @@ module Aws
|
|
1021
1021
|
case name
|
1022
1022
|
# service info
|
1023
1023
|
when 'Name';
|
1024
|
-
@service['name']
|
1024
|
+
@service['name'] = @text
|
1025
1025
|
when 'Prefix';
|
1026
|
-
@service['prefix']
|
1026
|
+
@service['prefix'] = @text
|
1027
1027
|
when 'Marker';
|
1028
|
-
@service['marker']
|
1028
|
+
@service['marker'] = @text
|
1029
1029
|
when 'MaxKeys';
|
1030
|
-
@service['max-keys']
|
1030
|
+
@service['max-keys'] = @text
|
1031
1031
|
when 'Delimiter';
|
1032
|
-
@service['delimiter']
|
1032
|
+
@service['delimiter'] = @text
|
1033
1033
|
when 'IsTruncated';
|
1034
1034
|
@service['is_truncated'] = (@text =~ /false/ ? false : true)
|
1035
1035
|
# key data
|
1036
1036
|
when 'Key';
|
1037
|
-
@current_key[:key]
|
1037
|
+
@current_key[:key] = @text
|
1038
1038
|
when 'LastModified';
|
1039
|
-
@current_key[:last_modified]
|
1039
|
+
@current_key[:last_modified] = @text
|
1040
1040
|
when 'ETag';
|
1041
|
-
@current_key[:e_tag]
|
1041
|
+
@current_key[:e_tag] = @text
|
1042
1042
|
when 'Size';
|
1043
|
-
@current_key[:size]
|
1043
|
+
@current_key[:size] = @text.to_i
|
1044
1044
|
when 'StorageClass';
|
1045
|
-
@current_key[:storage_class]
|
1045
|
+
@current_key[:storage_class] = @text
|
1046
1046
|
when 'ID';
|
1047
|
-
@current_key[:owner_id]
|
1047
|
+
@current_key[:owner_id] = @text
|
1048
1048
|
when 'DisplayName';
|
1049
1049
|
@current_key[:owner_display_name] = @text
|
1050
1050
|
when 'Contents';
|
1051
|
-
@current_key[:service]
|
1051
|
+
@current_key[:service] = @service; @result << @current_key
|
1052
1052
|
end
|
1053
1053
|
end
|
1054
1054
|
end
|
@@ -1073,35 +1073,35 @@ module Aws
|
|
1073
1073
|
case name
|
1074
1074
|
# service info
|
1075
1075
|
when 'Name';
|
1076
|
-
@result[:name]
|
1076
|
+
@result[:name] = @text
|
1077
1077
|
# Amazon uses the same tag for the search prefix and for the entries
|
1078
1078
|
# in common prefix...so use our simple flag to see which element
|
1079
1079
|
# we are parsing
|
1080
1080
|
when 'Prefix';
|
1081
1081
|
@in_common_prefixes ? @common_prefixes << @text : @result[:prefix] = @text
|
1082
1082
|
when 'Marker';
|
1083
|
-
@result[:marker]
|
1083
|
+
@result[:marker] = @text
|
1084
1084
|
when 'MaxKeys';
|
1085
|
-
@result[:max_keys]
|
1085
|
+
@result[:max_keys] = @text
|
1086
1086
|
when 'Delimiter';
|
1087
|
-
@result[:delimiter]
|
1087
|
+
@result[:delimiter] = @text
|
1088
1088
|
when 'IsTruncated';
|
1089
1089
|
@result[:is_truncated] = (@text =~ /false/ ? false : true)
|
1090
1090
|
when 'NextMarker';
|
1091
|
-
@result[:next_marker]
|
1091
|
+
@result[:next_marker] = @text
|
1092
1092
|
# key data
|
1093
1093
|
when 'Key';
|
1094
|
-
@current_key[:key]
|
1094
|
+
@current_key[:key] = @text
|
1095
1095
|
when 'LastModified';
|
1096
|
-
@current_key[:last_modified]
|
1096
|
+
@current_key[:last_modified] = @text
|
1097
1097
|
when 'ETag';
|
1098
|
-
@current_key[:e_tag]
|
1098
|
+
@current_key[:e_tag] = @text
|
1099
1099
|
when 'Size';
|
1100
|
-
@current_key[:size]
|
1100
|
+
@current_key[:size] = @text.to_i
|
1101
1101
|
when 'StorageClass';
|
1102
|
-
@current_key[:storage_class]
|
1102
|
+
@current_key[:storage_class] = @text
|
1103
1103
|
when 'ID';
|
1104
|
-
@current_key[:owner_id]
|
1104
|
+
@current_key[:owner_id] = @text
|
1105
1105
|
when 'DisplayName';
|
1106
1106
|
@current_key[:owner_display_name] = @text
|
1107
1107
|
when 'Contents';
|
@@ -1191,7 +1191,7 @@ module Aws
|
|
1191
1191
|
when 'LastModified' then
|
1192
1192
|
@result[:last_modified] = @text
|
1193
1193
|
when 'ETag' then
|
1194
|
-
@result[:e_tag]
|
1194
|
+
@result[:e_tag] = @text
|
1195
1195
|
end
|
1196
1196
|
end
|
1197
1197
|
end
|
@@ -1210,7 +1210,7 @@ module Aws
|
|
1210
1210
|
def headers_to_string(headers)
|
1211
1211
|
result = {}
|
1212
1212
|
headers.each do |key, value|
|
1213
|
-
value
|
1213
|
+
value = value[0] if value.is_a?(Array) && value.size<2
|
1214
1214
|
result[key] = value
|
1215
1215
|
end
|
1216
1216
|
result
|
@@ -140,13 +140,11 @@ module Aws
|
|
140
140
|
|
141
141
|
# Sends request to Amazon and parses the response
|
142
142
|
# Raises AwsError if any banana happened
|
143
|
-
def request_info(request, parser)
|
144
|
-
|
145
|
-
|
146
|
-
request_info_impl(thread[:sqs_connection], @@bench, request, parser)
|
143
|
+
def request_info(request, parser) #:nodoc:
|
144
|
+
conn = get_conn(:sqs_connection, @params, @logger)
|
145
|
+
request_info_impl(conn, @@bench, request, parser)
|
147
146
|
end
|
148
147
|
|
149
|
-
|
150
148
|
# Creates a new queue, returning its URI.
|
151
149
|
#
|
152
150
|
# sqs.create_queue('my_awesome_queue') #=> 'http://queue.amazonaws.com/ZZ7XXXYYYBINS/my_awesome_queue'
|
metadata
CHANGED
@@ -1,77 +1,82 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: steamcannon-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
version: 2.3.26.
|
7
|
+
- 2
|
8
|
+
- 3
|
9
|
+
- 26
|
10
|
+
- 2
|
11
|
+
version: 2.3.26.2
|
11
12
|
platform: ruby
|
12
13
|
authors:
|
13
|
-
|
14
|
-
|
15
|
-
|
14
|
+
- Travis Reeder
|
15
|
+
- Chad Arimura
|
16
|
+
- RightScale
|
16
17
|
autorequire:
|
17
18
|
bindir: bin
|
18
19
|
cert_chain: []
|
19
20
|
|
20
|
-
date: 2010-
|
21
|
+
date: 2010-12-01 00:00:00 -05:00
|
21
22
|
default_executable:
|
22
23
|
dependencies:
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
name: uuidtools
|
26
|
+
prerelease: false
|
27
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
hash: 3
|
33
|
+
segments:
|
34
|
+
- 0
|
35
|
+
version: "0"
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: http_connection
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: xml-simple
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 3
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
type: :runtime
|
65
|
+
version_requirements: *id003
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: activesupport
|
68
|
+
prerelease: false
|
69
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
type: :runtime
|
79
|
+
version_requirements: *id004
|
75
80
|
description: AWS Ruby Library for interfacing with Amazon Web Services.
|
76
81
|
email: travis@appoxy.com
|
77
82
|
executables: []
|
@@ -79,71 +84,73 @@ executables: []
|
|
79
84
|
extensions: []
|
80
85
|
|
81
86
|
extra_rdoc_files:
|
82
|
-
|
87
|
+
- README.markdown
|
83
88
|
files:
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
89
|
+
- lib/acf/right_acf_interface.rb
|
90
|
+
- lib/aws.rb
|
91
|
+
- lib/awsbase/aws_response_array.rb
|
92
|
+
- lib/awsbase/benchmark_fix.rb
|
93
|
+
- lib/awsbase/right_awsbase.rb
|
94
|
+
- lib/awsbase/support.rb
|
95
|
+
- lib/ec2/right_ec2.rb
|
96
|
+
- lib/ec2/right_mon_interface.rb
|
97
|
+
- lib/elb/elb_interface.rb
|
98
|
+
- lib/iam/iam.rb
|
99
|
+
- lib/rds/rds.rb
|
100
|
+
- lib/right_aws.rb
|
101
|
+
- lib/s3/right_s3.rb
|
102
|
+
- lib/s3/right_s3_interface.rb
|
103
|
+
- lib/sdb/active_sdb.rb
|
104
|
+
- lib/sdb/right_sdb_interface.rb
|
105
|
+
- lib/sqs/right_sqs.rb
|
106
|
+
- lib/sqs/right_sqs_interface.rb
|
107
|
+
- README.markdown
|
108
|
+
- test/sdb/test_helper.rb
|
109
|
+
- test/sdb/test_active_sdb.rb
|
110
|
+
- test/sdb/test_sdb.rb
|
111
|
+
- test/rds/test_rds.rb
|
112
|
+
- test/sqs/test_sqs.rb
|
113
|
+
- test/sqs/test_helper.rb
|
114
|
+
- test/elb/test_elb.rb
|
115
|
+
- test/iam/test_iam.rb
|
116
|
+
- test/test_credentials.rb
|
117
|
+
- test/ts_right_aws.rb
|
118
|
+
- test/http_connection.rb
|
119
|
+
- test/s3/test_s3_stubbed.rb
|
120
|
+
- test/s3/test_s3.rb
|
121
|
+
- test/s3/test_helper.rb
|
122
|
+
- test/acf/test_acf.rb
|
123
|
+
- test/acf/test_helper.rb
|
124
|
+
- test/ec2/test_mon.rb
|
125
|
+
- test/ec2/test_ec2.rb
|
126
|
+
- test/ec2/test_helper.rb
|
122
127
|
has_rdoc: true
|
123
128
|
homepage: http://github.com/appoxy/aws/
|
124
129
|
licenses: []
|
125
130
|
|
126
131
|
post_install_message:
|
127
|
-
rdoc_options:
|
128
|
-
|
132
|
+
rdoc_options:
|
133
|
+
- --charset=UTF-8
|
129
134
|
require_paths:
|
130
|
-
|
135
|
+
- lib
|
131
136
|
required_ruby_version: !ruby/object:Gem::Requirement
|
132
137
|
none: false
|
133
138
|
requirements:
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
+
- - ">="
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
hash: 3
|
142
|
+
segments:
|
143
|
+
- 0
|
144
|
+
version: "0"
|
139
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
146
|
none: false
|
141
147
|
requirements:
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
hash: 3
|
151
|
+
segments:
|
152
|
+
- 0
|
153
|
+
version: "0"
|
147
154
|
requirements: []
|
148
155
|
|
149
156
|
rubyforge_project:
|
@@ -152,22 +159,22 @@ signing_key:
|
|
152
159
|
specification_version: 3
|
153
160
|
summary: AWS Ruby Library for interfacing with Amazon Web Services.
|
154
161
|
test_files:
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
162
|
+
- test/sdb/test_helper.rb
|
163
|
+
- test/sdb/test_active_sdb.rb
|
164
|
+
- test/sdb/test_sdb.rb
|
165
|
+
- test/rds/test_rds.rb
|
166
|
+
- test/sqs/test_sqs.rb
|
167
|
+
- test/sqs/test_helper.rb
|
168
|
+
- test/elb/test_elb.rb
|
169
|
+
- test/iam/test_iam.rb
|
170
|
+
- test/test_credentials.rb
|
171
|
+
- test/ts_right_aws.rb
|
172
|
+
- test/http_connection.rb
|
173
|
+
- test/s3/test_s3_stubbed.rb
|
174
|
+
- test/s3/test_s3.rb
|
175
|
+
- test/s3/test_helper.rb
|
176
|
+
- test/acf/test_acf.rb
|
177
|
+
- test/acf/test_helper.rb
|
178
|
+
- test/ec2/test_mon.rb
|
179
|
+
- test/ec2/test_ec2.rb
|
180
|
+
- test/ec2/test_helper.rb
|