talaris-right_aws 2.1.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.
Files changed (66) hide show
  1. data/History.txt +305 -0
  2. data/Manifest.txt +60 -0
  3. data/README.txt +163 -0
  4. data/Rakefile +104 -0
  5. data/lib/acf/right_acf_interface.rb +549 -0
  6. data/lib/acf/right_acf_invalidations.rb +144 -0
  7. data/lib/acf/right_acf_origin_access_identities.rb +230 -0
  8. data/lib/acf/right_acf_streaming_interface.rb +229 -0
  9. data/lib/acw/right_acw_interface.rb +248 -0
  10. data/lib/as/right_as_interface.rb +698 -0
  11. data/lib/awsbase/benchmark_fix.rb +39 -0
  12. data/lib/awsbase/right_awsbase.rb +1174 -0
  13. data/lib/awsbase/support.rb +35 -0
  14. data/lib/awsbase/version.rb +9 -0
  15. data/lib/ec2/right_ec2.rb +458 -0
  16. data/lib/ec2/right_ec2_ebs.rb +465 -0
  17. data/lib/ec2/right_ec2_images.rb +413 -0
  18. data/lib/ec2/right_ec2_instances.rb +785 -0
  19. data/lib/ec2/right_ec2_monitoring.rb +70 -0
  20. data/lib/ec2/right_ec2_placement_groups.rb +108 -0
  21. data/lib/ec2/right_ec2_reserved_instances.rb +174 -0
  22. data/lib/ec2/right_ec2_security_groups.rb +396 -0
  23. data/lib/ec2/right_ec2_spot_instances.rb +425 -0
  24. data/lib/ec2/right_ec2_tags.rb +139 -0
  25. data/lib/ec2/right_ec2_vpc.rb +583 -0
  26. data/lib/ec2/right_ec2_windows_mobility.rb +84 -0
  27. data/lib/elb/right_elb_interface.rb +571 -0
  28. data/lib/iam/right_iam_access_keys.rb +71 -0
  29. data/lib/iam/right_iam_groups.rb +195 -0
  30. data/lib/iam/right_iam_interface.rb +341 -0
  31. data/lib/iam/right_iam_mfa_devices.rb +67 -0
  32. data/lib/iam/right_iam_users.rb +251 -0
  33. data/lib/rds/right_rds_interface.rb +1309 -0
  34. data/lib/right_aws.rb +83 -0
  35. data/lib/route_53/right_route_53_interface.rb +630 -0
  36. data/lib/s3/right_s3.rb +1123 -0
  37. data/lib/s3/right_s3_interface.rb +1198 -0
  38. data/lib/sdb/active_sdb.rb +1107 -0
  39. data/lib/sdb/right_sdb_interface.rb +753 -0
  40. data/lib/sqs/right_sqs.rb +387 -0
  41. data/lib/sqs/right_sqs_gen2.rb +342 -0
  42. data/lib/sqs/right_sqs_gen2_interface.rb +523 -0
  43. data/lib/sqs/right_sqs_interface.rb +593 -0
  44. data/right_aws.gemspec +91 -0
  45. data/test/acf/test_helper.rb +2 -0
  46. data/test/acf/test_right_acf.rb +138 -0
  47. data/test/awsbase/test_helper.rb +2 -0
  48. data/test/awsbase/test_right_awsbase.rb +12 -0
  49. data/test/ec2/test_helper.rb +2 -0
  50. data/test/ec2/test_right_ec2.rb +108 -0
  51. data/test/http_connection.rb +87 -0
  52. data/test/rds/test_helper.rb +2 -0
  53. data/test/rds/test_right_rds.rb +120 -0
  54. data/test/s3/test_helper.rb +2 -0
  55. data/test/s3/test_right_s3.rb +421 -0
  56. data/test/s3/test_right_s3_stubbed.rb +97 -0
  57. data/test/sdb/test_active_sdb.rb +357 -0
  58. data/test/sdb/test_batch_put_attributes.rb +54 -0
  59. data/test/sdb/test_helper.rb +3 -0
  60. data/test/sdb/test_right_sdb.rb +253 -0
  61. data/test/sqs/test_helper.rb +2 -0
  62. data/test/sqs/test_right_sqs.rb +285 -0
  63. data/test/sqs/test_right_sqs_gen2.rb +264 -0
  64. data/test/test_credentials.rb +37 -0
  65. data/test/ts_right_aws.rb +14 -0
  66. metadata +214 -0
@@ -0,0 +1,264 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestSqsGen2 < Test::Unit::TestCase
4
+
5
+ GRANTEE_EMAIL_ADDRESS = 'fester@example.com'
6
+ RIGHT_MESSAGE_TEXT = 'Right test message'
7
+
8
+
9
+ def setup
10
+ $stdout.sync = true
11
+ @grantee_aws_id = '100000000001'
12
+ @sqs = Rightscale::SqsGen2Interface.new(TestCredentials.aws_access_key_id, TestCredentials.aws_secret_access_key)
13
+ @queue_name = 'right_sqs_test_gen2_queue'
14
+ @queue2_name = @queue_name + '_2'
15
+ @queue3_name = @queue_name + '_3'
16
+ @queue4_name = @queue_name + '_4'
17
+ # for classes
18
+ @s = Rightscale::SqsGen2.new(TestCredentials.aws_access_key_id, TestCredentials.aws_secret_access_key)
19
+ end
20
+
21
+ # Wait for the queue to appear in the queues list.
22
+ # Amazon needs some time to after the queue creation to place
23
+ # it to the accessible queues list. If we dont want to get
24
+ # the additional faults then wait a bit...
25
+ def wait_for_queue_url(queue_name)
26
+ queue_url = nil
27
+ do_sleep(180) do
28
+ queue_url = @sqs.queue_url_by_name(queue_name)
29
+ end
30
+ sleep 30
31
+ queue_url
32
+ end
33
+
34
+ def do_sleep(delay, &block)
35
+ puts "sleeping #{block ? 'up to ' : ''}#{delay} seconds:"
36
+ wake_up_at = Time.now+delay
37
+ while Time.now < wake_up_at do
38
+ sleep 1
39
+ print '.'
40
+ break if block && block.call
41
+ end
42
+ puts
43
+ end
44
+
45
+ #---------------------------
46
+ # Rightscale::SqsInterface
47
+ #---------------------------
48
+
49
+ def test_01_create_queue
50
+ queue_url = @sqs.create_queue @queue_name
51
+ assert queue_url[/http.*#{@queue_name}/], 'New queue creation failed'
52
+ end
53
+
54
+ def test_02_list_queues
55
+ wait_for_queue_url(@queue_name)
56
+ queues = @sqs.list_queues('right_')
57
+ assert queues.size>0, 'Must more that 0 queues in list'
58
+ end
59
+
60
+ def test_03_set_and_get_queue_attributes
61
+ queue_url = @sqs.queue_url_by_name(@queue_name)
62
+ assert queue_url[/https.*#{@queue_name}/], "#{@queue_name} must exist!"
63
+ assert @sqs.set_queue_attributes(queue_url, 'VisibilityTimeout', 111), 'Set_queue_attributes fail'
64
+ do_sleep 60 # Amazon needs some time to change attribute
65
+ assert_equal '111', @sqs.get_queue_attributes(queue_url)['VisibilityTimeout'], 'New VisibilityTimeout must be equal to 111'
66
+ end
67
+
68
+ def test_04_get_queue_attributes_forms
69
+ queue_url = @sqs.queue_url_by_name(@queue_name)
70
+ all = nil
71
+ assert_nothing_raised do
72
+ all = @sqs.get_queue_attributes(queue_url, 'All')
73
+ end
74
+ assert_nothing_raised do
75
+ assert all, @sqs.get_queue_attributes(queue_url)
76
+ end
77
+ assert_nothing_raised do
78
+ attributes = @sqs.get_queue_attributes(queue_url, 'ApproximateNumberOfMessages', 'VisibilityTimeout')
79
+ assert_equal 2, attributes.size
80
+ end
81
+ assert_nothing_raised do
82
+ attributes = @sqs.get_queue_attributes(queue_url, ['ApproximateNumberOfMessages', 'VisibilityTimeout'])
83
+ assert_equal 2, attributes.size
84
+ end
85
+ end
86
+
87
+ def test_05_add_permissions
88
+ queue_url = @sqs.queue_url_by_name(@queue_name)
89
+ assert @sqs.add_permissions(queue_url, 'test01', @grantee_aws_id, 'SendMessage')
90
+ assert @sqs.add_permissions(queue_url, 'test02', @grantee_aws_id, ['DeleteMessage','ReceiveMessage'])
91
+ do_sleep 60
92
+ end
93
+
94
+ def test_06_test_permissions
95
+ queue_url = @sqs.queue_url_by_name(@queue_name)
96
+ permissions = @sqs.get_queue_attributes(queue_url, 'Policy')
97
+ assert !permissions.right_blank?
98
+ end
99
+
100
+ def test_07_revoke_permissions
101
+ queue_url = @sqs.queue_url_by_name(@queue_name)
102
+ assert @sqs.remove_permissions(queue_url, 'test01')
103
+ assert @sqs.remove_permissions(queue_url, 'test02')
104
+ end
105
+
106
+ def test_14_send_message
107
+ queue_url = @sqs.queue_url_by_name(@queue_name)
108
+ # send 5 messages for the tests below
109
+ assert @sqs.send_message(queue_url, RIGHT_MESSAGE_TEXT)
110
+ assert @sqs.send_message(queue_url, RIGHT_MESSAGE_TEXT)
111
+ assert @sqs.send_message(queue_url, RIGHT_MESSAGE_TEXT)
112
+ assert @sqs.send_message(queue_url, RIGHT_MESSAGE_TEXT)
113
+ assert @sqs.send_message(queue_url, RIGHT_MESSAGE_TEXT)
114
+ do_sleep 60
115
+ end
116
+
117
+ def test_15_get_queue_length
118
+ queue_url = @sqs.queue_url_by_name(@queue_name)
119
+ assert_equal 5, @sqs.get_queue_length(queue_url), 'Queue must have 5 messages'
120
+ end
121
+
122
+ def test_16_receive_message
123
+ queue_url = @sqs.queue_url_by_name(@queue_name)
124
+ r_message = @sqs.receive_message(queue_url, 1)[0]
125
+ assert r_message, "Receive returned no message(s), but this is not necessarily incorrect"
126
+ assert_equal RIGHT_MESSAGE_TEXT, r_message['Body'], 'Receive message got wrong message text'
127
+ end
128
+
129
+ def test_17_delete_message
130
+ queue_url = @sqs.queue_url_by_name(@queue_name)
131
+ message = @sqs.receive_message(queue_url)[0]
132
+ assert @sqs.delete_message(queue_url, message['ReceiptHandle']), 'Delete_message fail'
133
+ assert @sqs.pop_message(queue_url), 'Pop_message fail'
134
+ end
135
+
136
+ def test_18_clear_and_delete_queue
137
+ queue_url = @sqs.queue_url_by_name(@queue_name)
138
+ assert @sqs.delete_queue(queue_url)
139
+ end
140
+
141
+ #---------------------------
142
+ # Rightscale::Sqs classes
143
+ #---------------------------
144
+
145
+ def test_20_sqs_create_queue
146
+ assert @s, 'Rightscale::SqsGen2 must exist'
147
+ # get queues list
148
+ queues_size = @s.queues.size
149
+ # create new queue
150
+ queue = @s.queue(@queue2_name, true)
151
+ # check that it is created
152
+ assert queue.is_a?(Rightscale::SqsGen2::Queue)
153
+ wait_for_queue_url(queue.name)
154
+ # check that amount of queues has increased
155
+ assert_equal queues_size + 1, @s.queues.size
156
+ do_sleep 10
157
+ end
158
+
159
+ def test_21_sqs_delete_queue
160
+ queue = @s.queue(@queue2_name, false)
161
+ assert queue.delete
162
+ end
163
+
164
+ def test_22_queue_create
165
+ # create new queue
166
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue3_name, true)
167
+ # check that it is created
168
+ assert queue.is_a?(Rightscale::SqsGen2::Queue)
169
+ wait_for_queue_url("#{@queue_name}_21")
170
+ do_sleep 10
171
+ end
172
+
173
+ def test_23_queue_attributes
174
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue3_name, false)
175
+ # get a list of attrinutes
176
+ attributes = queue.get_attribute
177
+ assert attributes.is_a?(Hash) && attributes.size>0
178
+ # get attribute value and increase it by 10
179
+ v = (queue.get_attribute('VisibilityTimeout').to_i + 10).to_s
180
+ # set attribute
181
+ assert queue.set_attribute('VisibilityTimeout', v)
182
+ # wait a bit
183
+ do_sleep 60
184
+ # check that attribute has changed
185
+ assert_equal v, queue.get_attribute('VisibilityTimeout')
186
+ # get queue visibility timeout
187
+ assert_equal v, queue.visibility
188
+ # change it
189
+ queue.visibility = queue.visibility.to_i + 10
190
+ # make sure that it is changed
191
+ assert v.to_i + 10, queue.visibility
192
+ end
193
+
194
+ def test_24
195
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue3_name, false)
196
+ assert queue.delete
197
+ end
198
+
199
+ def test_25_send_size
200
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue4_name, true)
201
+ # send 5 messages
202
+ assert queue.push('a1')
203
+ assert queue.push('a2')
204
+ assert queue.push('a3')
205
+ assert queue.push('a4')
206
+ assert queue.push('a5')
207
+ #
208
+ do_sleep(300){ queue.size == 5 }
209
+ # check queue size
210
+ assert_equal 5, queue.size
211
+ # send one more
212
+ assert queue.push('a6')
213
+ #
214
+ do_sleep(300){ queue.size == 6 }
215
+ # check queue size again
216
+ assert_equal 6, queue.size
217
+ end
218
+
219
+ def test_26_message_receive_pop_delete
220
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue4_name, false)
221
+ # get queue size
222
+ size = queue.size
223
+ # get first message
224
+ m1 = queue.receive(10)
225
+ assert m1.is_a?(Rightscale::SqsGen2::Message)
226
+ # pop second message
227
+ m2 = queue.pop
228
+ assert m2.is_a?(Rightscale::SqsGen2::Message)
229
+ #
230
+ do_sleep 30
231
+ # make sure that queue size has decreased
232
+ assert_equal size-1, queue.size
233
+ # delete messsage
234
+ assert m1.delete
235
+ #
236
+ do_sleep 15
237
+ # make sure that queue size has decreased again
238
+ assert_equal size-2, queue.size
239
+ end
240
+
241
+ def test_27
242
+ queue = Rightscale::SqsGen2::Queue.create(@s, @queue4_name, false)
243
+ # lock message
244
+ queue.receive(100)
245
+ # clear queue
246
+ assert queue.clear
247
+ # queue size is greater than zero
248
+ assert queue.size>0
249
+ # delete queue
250
+ assert queue.delete
251
+ end
252
+
253
+ def test_28_set_amazon_problems
254
+ original_problems = Rightscale::SqsGen2Interface.amazon_problems
255
+ assert(original_problems.length > 0)
256
+ Rightscale::SqsGen2Interface.amazon_problems= original_problems << "A New Problem"
257
+ new_problems = Rightscale::SqsGen2Interface.amazon_problems
258
+ assert_equal(new_problems, original_problems)
259
+
260
+ Rightscale::SqsGen2Interface.amazon_problems= nil
261
+ assert_nil(Rightscale::SqsGen2Interface.amazon_problems)
262
+ end
263
+
264
+ end
@@ -0,0 +1,37 @@
1
+ class TestCredentials
2
+
3
+ @@aws_access_key_id = nil
4
+ @@aws_secret_access_key = nil
5
+ @@account_number = nil
6
+
7
+ def self.aws_access_key_id
8
+ @@aws_access_key_id
9
+ end
10
+ def self.aws_access_key_id=(newval)
11
+ @@aws_access_key_id = newval
12
+ end
13
+ def self.account_number
14
+ @@account_number
15
+ end
16
+ def self.account_number=(newval)
17
+ @@account_number = newval
18
+ end
19
+ def self.aws_secret_access_key
20
+ @@aws_secret_access_key
21
+ end
22
+ def self.aws_secret_access_key=(newval)
23
+ @@aws_secret_access_key = newval
24
+ end
25
+
26
+ def self.get_credentials
27
+ Dir.chdir do
28
+ begin
29
+ Dir.chdir('./.rightscale') do
30
+ require 'testcredentials'
31
+ end
32
+ rescue Exception => e
33
+ puts "Couldn't chdir to ~/.rightscale: #{e.message}"
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,14 @@
1
+ require 'test/unit'
2
+ $: << File.dirname(__FILE__)
3
+ require 'test_credentials'
4
+ TestCredentials.get_credentials
5
+
6
+ require 'http_connection'
7
+ require 'awsbase/test_right_awsbase.rb'
8
+ require 'ec2/test_right_ec2.rb'
9
+ require 's3/test_right_s3.rb'
10
+ require 's3/test_right_s3_stubbed.rb'
11
+ require 'sqs/test_right_sqs.rb'
12
+ require 'sqs/test_right_sqs_gen2.rb'
13
+ require 'sdb/test_right_sdb.rb'
14
+ require 'acf/test_right_acf.rb'
metadata ADDED
@@ -0,0 +1,214 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: talaris-right_aws
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 2.1.0
6
+ platform: ruby
7
+ authors:
8
+ - RightScale, Inc.
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-02-28 00:00:00 -08:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: right_http_connection
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 1.2.4
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: "0"
36
+ type: :development
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: rcov
40
+ prerelease: false
41
+ requirement: &id003 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: "0"
47
+ type: :development
48
+ version_requirements: *id003
49
+ description: |
50
+ == DESCRIPTION:
51
+
52
+ The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.
53
+ These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon.
54
+ The RightScale AWS gems comprise:
55
+
56
+ - RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the
57
+ associated EBS (Elastic Block Store)
58
+ - RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service)
59
+ - RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01)
60
+ - RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01)
61
+ - RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB)
62
+ - RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service
63
+
64
+ == FEATURES:
65
+
66
+ - Full programmmatic access to EC2, EBS, S3, SQS, SDB, and CloudFront.
67
+ - Complete error handling: all operations check for errors and report complete
68
+ error information by raising an AwsError.
69
+ - Persistent HTTP connections with robust network-level retry layer using
70
+ RightHttpConnection). This includes socket timeouts and retries.
71
+ - Robust HTTP-level retry layer. Certain (user-adjustable) HTTP errors returned
72
+ by Amazon's services are classified as temporary errors.
73
+ These errors are automaticallly retried using exponentially increasing intervals.
74
+ The number of retries is user-configurable.
75
+ - Fast REXML-based parsing of responses (as fast as a pure Ruby solution allows).
76
+ - Uses libxml (if available) for faster response parsing.
77
+ - Support for large S3 list operations. Buckets and key subfolders containing
78
+ many (> 1000) keys are listed in entirety. Operations based on list (like
79
+ bucket clear) work on arbitrary numbers of keys.
80
+ - Support for streaming GETs from S3, and streaming PUTs to S3 if the data source is a file.
81
+ - Support for single-threaded usage, multithreaded usage, as well as usage with multiple
82
+ AWS accounts.
83
+ - Support for both first- and second-generation SQS (API versions 2007-05-01
84
+ and 2008-01-01). These versions of SQS are not compatible.
85
+ - Support for signature versions 0 and 1 on SQS, SDB, and EC2.
86
+ - Interoperability with any cloud running Eucalyptus (http://eucalyptus.cs.ucsb.edu)
87
+ - Test suite (requires AWS account to do "live" testing).
88
+
89
+ email: support@rightscale.com
90
+ executables: []
91
+
92
+ extensions: []
93
+
94
+ extra_rdoc_files:
95
+ - README.txt
96
+ files:
97
+ - History.txt
98
+ - Manifest.txt
99
+ - README.txt
100
+ - Rakefile
101
+ - lib/acf/right_acf_interface.rb
102
+ - lib/acf/right_acf_invalidations.rb
103
+ - lib/acf/right_acf_origin_access_identities.rb
104
+ - lib/acf/right_acf_streaming_interface.rb
105
+ - lib/acw/right_acw_interface.rb
106
+ - lib/as/right_as_interface.rb
107
+ - lib/awsbase/benchmark_fix.rb
108
+ - lib/awsbase/right_awsbase.rb
109
+ - lib/awsbase/support.rb
110
+ - lib/awsbase/version.rb
111
+ - lib/ec2/right_ec2.rb
112
+ - lib/ec2/right_ec2_ebs.rb
113
+ - lib/ec2/right_ec2_images.rb
114
+ - lib/ec2/right_ec2_instances.rb
115
+ - lib/ec2/right_ec2_monitoring.rb
116
+ - lib/ec2/right_ec2_placement_groups.rb
117
+ - lib/ec2/right_ec2_reserved_instances.rb
118
+ - lib/ec2/right_ec2_security_groups.rb
119
+ - lib/ec2/right_ec2_spot_instances.rb
120
+ - lib/ec2/right_ec2_tags.rb
121
+ - lib/ec2/right_ec2_vpc.rb
122
+ - lib/ec2/right_ec2_windows_mobility.rb
123
+ - lib/elb/right_elb_interface.rb
124
+ - lib/iam/right_iam_access_keys.rb
125
+ - lib/iam/right_iam_groups.rb
126
+ - lib/iam/right_iam_interface.rb
127
+ - lib/iam/right_iam_mfa_devices.rb
128
+ - lib/iam/right_iam_users.rb
129
+ - lib/rds/right_rds_interface.rb
130
+ - lib/right_aws.rb
131
+ - lib/route_53/right_route_53_interface.rb
132
+ - lib/s3/right_s3.rb
133
+ - lib/s3/right_s3_interface.rb
134
+ - lib/sdb/active_sdb.rb
135
+ - lib/sdb/right_sdb_interface.rb
136
+ - lib/sqs/right_sqs.rb
137
+ - lib/sqs/right_sqs_gen2.rb
138
+ - lib/sqs/right_sqs_gen2_interface.rb
139
+ - lib/sqs/right_sqs_interface.rb
140
+ - right_aws.gemspec
141
+ - test/acf/test_helper.rb
142
+ - test/acf/test_right_acf.rb
143
+ - test/awsbase/test_helper.rb
144
+ - test/awsbase/test_right_awsbase.rb
145
+ - test/ec2/test_helper.rb
146
+ - test/ec2/test_right_ec2.rb
147
+ - test/http_connection.rb
148
+ - test/rds/test_helper.rb
149
+ - test/rds/test_right_rds.rb
150
+ - test/s3/test_helper.rb
151
+ - test/s3/test_right_s3.rb
152
+ - test/s3/test_right_s3_stubbed.rb
153
+ - test/sdb/test_active_sdb.rb
154
+ - test/sdb/test_batch_put_attributes.rb
155
+ - test/sdb/test_helper.rb
156
+ - test/sdb/test_right_sdb.rb
157
+ - test/sqs/test_helper.rb
158
+ - test/sqs/test_right_sqs.rb
159
+ - test/sqs/test_right_sqs_gen2.rb
160
+ - test/test_credentials.rb
161
+ - test/ts_right_aws.rb
162
+ has_rdoc: true
163
+ homepage:
164
+ licenses: []
165
+
166
+ post_install_message:
167
+ rdoc_options:
168
+ - --main
169
+ - README.txt
170
+ - --title
171
+ - ""
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: 1.8.7
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ none: false
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: "0"
186
+ requirements:
187
+ - libxml-ruby >= 0.5.2.0 is encouraged
188
+ rubyforge_project: talaris-rightaws
189
+ rubygems_version: 1.5.2
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: Interface classes for the Amazon EC2, SQS, and S3 Web Services
193
+ test_files:
194
+ - test/acf/test_helper.rb
195
+ - test/acf/test_right_acf.rb
196
+ - test/awsbase/test_helper.rb
197
+ - test/awsbase/test_right_awsbase.rb
198
+ - test/ec2/test_helper.rb
199
+ - test/ec2/test_right_ec2.rb
200
+ - test/http_connection.rb
201
+ - test/rds/test_helper.rb
202
+ - test/rds/test_right_rds.rb
203
+ - test/s3/test_helper.rb
204
+ - test/s3/test_right_s3.rb
205
+ - test/s3/test_right_s3_stubbed.rb
206
+ - test/sdb/test_active_sdb.rb
207
+ - test/sdb/test_batch_put_attributes.rb
208
+ - test/sdb/test_helper.rb
209
+ - test/sdb/test_right_sdb.rb
210
+ - test/sqs/test_helper.rb
211
+ - test/sqs/test_right_sqs.rb
212
+ - test/sqs/test_right_sqs_gen2.rb
213
+ - test/test_credentials.rb
214
+ - test/ts_right_aws.rb