ktheory-right_aws 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/History.txt +284 -0
  2. data/Manifest.txt +50 -0
  3. data/README.txt +167 -0
  4. data/Rakefile +110 -0
  5. data/lib/acf/right_acf_interface.rb +485 -0
  6. data/lib/acf/right_acf_origin_access_identities.rb +230 -0
  7. data/lib/acf/right_acf_streaming_interface.rb +236 -0
  8. data/lib/acw/right_acw_interface.rb +249 -0
  9. data/lib/as/right_as_interface.rb +699 -0
  10. data/lib/awsbase/benchmark_fix.rb +39 -0
  11. data/lib/awsbase/right_awsbase.rb +978 -0
  12. data/lib/awsbase/support.rb +115 -0
  13. data/lib/ec2/right_ec2.rb +395 -0
  14. data/lib/ec2/right_ec2_ebs.rb +452 -0
  15. data/lib/ec2/right_ec2_images.rb +373 -0
  16. data/lib/ec2/right_ec2_instances.rb +755 -0
  17. data/lib/ec2/right_ec2_monitoring.rb +70 -0
  18. data/lib/ec2/right_ec2_reserved_instances.rb +170 -0
  19. data/lib/ec2/right_ec2_security_groups.rb +277 -0
  20. data/lib/ec2/right_ec2_spot_instances.rb +399 -0
  21. data/lib/ec2/right_ec2_vpc.rb +571 -0
  22. data/lib/elb/right_elb_interface.rb +496 -0
  23. data/lib/rds/right_rds_interface.rb +998 -0
  24. data/lib/right_aws.rb +83 -0
  25. data/lib/s3/right_s3.rb +1126 -0
  26. data/lib/s3/right_s3_interface.rb +1199 -0
  27. data/lib/sdb/active_sdb.rb +1122 -0
  28. data/lib/sdb/right_sdb_interface.rb +721 -0
  29. data/lib/sqs/right_sqs.rb +388 -0
  30. data/lib/sqs/right_sqs_gen2.rb +343 -0
  31. data/lib/sqs/right_sqs_gen2_interface.rb +524 -0
  32. data/lib/sqs/right_sqs_interface.rb +594 -0
  33. data/test/acf/test_helper.rb +2 -0
  34. data/test/acf/test_right_acf.rb +138 -0
  35. data/test/ec2/test_helper.rb +2 -0
  36. data/test/ec2/test_right_ec2.rb +108 -0
  37. data/test/http_connection.rb +87 -0
  38. data/test/rds/test_helper.rb +2 -0
  39. data/test/rds/test_right_rds.rb +120 -0
  40. data/test/s3/test_helper.rb +2 -0
  41. data/test/s3/test_right_s3.rb +421 -0
  42. data/test/s3/test_right_s3_stubbed.rb +97 -0
  43. data/test/sdb/test_active_sdb.rb +357 -0
  44. data/test/sdb/test_helper.rb +3 -0
  45. data/test/sdb/test_right_sdb.rb +253 -0
  46. data/test/sqs/test_helper.rb +2 -0
  47. data/test/sqs/test_right_sqs.rb +291 -0
  48. data/test/sqs/test_right_sqs_gen2.rb +264 -0
  49. data/test/test_credentials.rb +37 -0
  50. data/test/ts_right_aws.rb +14 -0
  51. metadata +184 -0
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ktheory-right_aws
3
+ version: !ruby/object:Gem::Version
4
+ hash: 13
5
+ prerelease: false
6
+ segments:
7
+ - 2
8
+ - 0
9
+ - 1
10
+ version: 2.0.1
11
+ platform: ruby
12
+ authors:
13
+ - RightScale, Inc.
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-09-14 00:00:00 -04:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: right_http_connection
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 29
30
+ segments:
31
+ - 1
32
+ - 2
33
+ - 1
34
+ version: 1.2.1
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rubyforge
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 7
46
+ segments:
47
+ - 2
48
+ - 0
49
+ - 4
50
+ version: 2.0.4
51
+ type: :development
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: hoe
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 21
62
+ segments:
63
+ - 2
64
+ - 6
65
+ - 1
66
+ version: 2.6.1
67
+ type: :development
68
+ version_requirements: *id003
69
+ description: |-
70
+ == DESCRIPTION:
71
+
72
+ The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.
73
+ These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon.
74
+ The RightScale AWS gems comprise:
75
+
76
+ - RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud), VPC (Virtual Private Cloud) and the associated EBS (Elastic Block Store)
77
+ - RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service)
78
+ - RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service)
79
+ - RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service)
80
+ - RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB)
81
+ - RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service
82
+ - RightAws::AsInterface -- interface to Amazon Auto Scaling
83
+ - RightAws::AcwInterface -- interface to Amazon Cloud Watch
84
+ - RightAws::ElbInterface -- interface to Amazon Elastic Load Balancer
85
+ - RightAws::RdsInterface -- interface to Amazon RDS instances
86
+
87
+ == FEATURES:
88
+ email: support@rightscale.com
89
+ executables: []
90
+
91
+ extensions: []
92
+
93
+ extra_rdoc_files:
94
+ - History.txt
95
+ - Manifest.txt
96
+ - README.txt
97
+ files:
98
+ - History.txt
99
+ - Manifest.txt
100
+ - README.txt
101
+ - Rakefile
102
+ - lib/awsbase/benchmark_fix.rb
103
+ - lib/awsbase/right_awsbase.rb
104
+ - lib/awsbase/support.rb
105
+ - lib/ec2/right_ec2.rb
106
+ - lib/ec2/right_ec2_images.rb
107
+ - lib/ec2/right_ec2_instances.rb
108
+ - lib/ec2/right_ec2_security_groups.rb
109
+ - lib/ec2/right_ec2_spot_instances.rb
110
+ - lib/ec2/right_ec2_ebs.rb
111
+ - lib/ec2/right_ec2_reserved_instances.rb
112
+ - lib/ec2/right_ec2_vpc.rb
113
+ - lib/ec2/right_ec2_monitoring.rb
114
+ - lib/right_aws.rb
115
+ - lib/s3/right_s3.rb
116
+ - lib/acw/right_acw_interface.rb
117
+ - lib/elb/right_elb_interface.rb
118
+ - lib/as/right_as_interface.rb
119
+ - lib/s3/right_s3_interface.rb
120
+ - lib/sdb/active_sdb.rb
121
+ - lib/sdb/right_sdb_interface.rb
122
+ - lib/sqs/right_sqs.rb
123
+ - lib/sqs/right_sqs_gen2.rb
124
+ - lib/sqs/right_sqs_gen2_interface.rb
125
+ - lib/sqs/right_sqs_interface.rb
126
+ - lib/acf/right_acf_interface.rb
127
+ - lib/acf/right_acf_streaming_interface.rb
128
+ - lib/acf/right_acf_origin_access_identities.rb
129
+ - lib/rds/right_rds_interface.rb
130
+ - test/ec2/test_helper.rb
131
+ - test/ec2/test_right_ec2.rb
132
+ - test/http_connection.rb
133
+ - test/s3/test_helper.rb
134
+ - test/s3/test_right_s3.rb
135
+ - test/s3/test_right_s3_stubbed.rb
136
+ - test/sdb/test_active_sdb.rb
137
+ - test/sdb/test_helper.rb
138
+ - test/sdb/test_right_sdb.rb
139
+ - test/sqs/test_helper.rb
140
+ - test/sqs/test_right_sqs.rb
141
+ - test/sqs/test_right_sqs_gen2.rb
142
+ - test/test_credentials.rb
143
+ - test/ts_right_aws.rb
144
+ - test/acf/test_helper.rb
145
+ - test/acf/test_right_acf.rb
146
+ - test/rds/test_helper.rb
147
+ - test/rds/test_right_rds.rb
148
+ has_rdoc: true
149
+ homepage: http://github.com/ktheory/right_aws
150
+ licenses: []
151
+
152
+ post_install_message:
153
+ rdoc_options:
154
+ - --main
155
+ - README.txt
156
+ require_paths:
157
+ - lib
158
+ required_ruby_version: !ruby/object:Gem::Requirement
159
+ none: false
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ hash: 3
164
+ segments:
165
+ - 0
166
+ version: "0"
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ hash: 3
173
+ segments:
174
+ - 0
175
+ version: "0"
176
+ requirements: []
177
+
178
+ rubyforge_project: rightaws
179
+ rubygems_version: 1.3.7
180
+ signing_key:
181
+ specification_version: 3
182
+ summary: Interface classes for the Amazon EC2, SQS, and S3 Web Services
183
+ test_files:
184
+ - test/ts_right_aws.rb