dmarkov-right_aws 1.10.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.
@@ -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,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dmarkov-right_aws
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.10.0
5
+ platform: ruby
6
+ authors:
7
+ - RightScale, Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-04 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: right_http_connection
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.4
24
+ version:
25
+ description: |-
26
+ == DESCRIPTION:
27
+
28
+ The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.
29
+ These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon.
30
+ The RightScale AWS gems comprise:
31
+
32
+ - RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the
33
+ associated EBS (Elastic Block Store)
34
+ - RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service)
35
+ - RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01)
36
+ - RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01)
37
+ - RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB)
38
+ - RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service
39
+
40
+ == FEATURES:
41
+ email: rubygems@rightscale.com
42
+ executables: []
43
+
44
+ extensions: []
45
+
46
+ extra_rdoc_files:
47
+ - History.txt
48
+ - Manifest.txt
49
+ - README.txt
50
+ files:
51
+ - History.txt
52
+ - Manifest.txt
53
+ - README.txt
54
+ - Rakefile
55
+ - lib/awsbase/benchmark_fix.rb
56
+ - lib/awsbase/right_awsbase.rb
57
+ - lib/awsbase/support.rb
58
+ - lib/ec2/right_ec2.rb
59
+ - lib/right_aws.rb
60
+ - lib/s3/right_s3.rb
61
+ - lib/s3/right_s3_interface.rb
62
+ - lib/sdb/active_sdb.rb
63
+ - lib/sdb/right_sdb_interface.rb
64
+ - lib/sqs/right_sqs.rb
65
+ - lib/sqs/right_sqs_gen2.rb
66
+ - lib/sqs/right_sqs_gen2_interface.rb
67
+ - lib/sqs/right_sqs_interface.rb
68
+ - lib/acf/right_acf_interface.rb
69
+ - test/ec2/test_helper.rb
70
+ - test/ec2/test_right_ec2.rb
71
+ - test/http_connection.rb
72
+ - test/s3/test_helper.rb
73
+ - test/s3/test_right_s3.rb
74
+ - test/s3/test_right_s3_stubbed.rb
75
+ - test/sdb/test_active_sdb.rb
76
+ - test/sdb/test_helper.rb
77
+ - test/sdb/test_right_sdb.rb
78
+ - test/sqs/test_helper.rb
79
+ - test/sqs/test_right_sqs.rb
80
+ - test/sqs/test_right_sqs_gen2.rb
81
+ - test/test_credentials.rb
82
+ - test/ts_right_aws.rb
83
+ - test/acf/test_helper.rb
84
+ - test/acf/test_right_acf.rb
85
+ has_rdoc: true
86
+ homepage:
87
+ licenses: []
88
+
89
+ post_install_message:
90
+ rdoc_options:
91
+ - --main
92
+ - README.txt
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: "0"
100
+ version:
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: "0"
106
+ version:
107
+ requirements: []
108
+
109
+ rubyforge_project: rightscale
110
+ rubygems_version: 1.3.5
111
+ signing_key:
112
+ specification_version: 3
113
+ summary: Interface classes for the Amazon EC2/EBS, SQS, S3, SDB, and ACF Web Services
114
+ test_files:
115
+ - test/ts_right_aws.rb