monkeyhelper-right_aws 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: monkeyhelper-right_aws
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.10.0
5
+ platform: ruby
6
+ authors:
7
+ - robl
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-18 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: robl[at]monkeyhelper.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.txt
24
+ files:
25
+ - History.txt
26
+ - Manifest.txt
27
+ - README.txt
28
+ - Rakefile
29
+ - VERSION
30
+ - lib/acf/right_acf_interface.rb
31
+ - lib/awsbase/benchmark_fix.rb
32
+ - lib/awsbase/right_awsbase.rb
33
+ - lib/awsbase/support.rb
34
+ - lib/ec2/right_ec2.rb
35
+ - lib/right_aws.rb
36
+ - lib/s3/right_s3.rb
37
+ - lib/s3/right_s3_interface.rb
38
+ - lib/sdb/active_sdb.rb
39
+ - lib/sdb/right_sdb_interface.rb
40
+ - lib/sqs/right_sqs.rb
41
+ - lib/sqs/right_sqs_gen2.rb
42
+ - lib/sqs/right_sqs_gen2_interface.rb
43
+ - lib/sqs/right_sqs_interface.rb
44
+ - test/acf/test_helper.rb
45
+ - test/acf/test_right_acf.rb
46
+ - test/ec2/test_helper.rb
47
+ - test/ec2/test_right_ec2.rb
48
+ - test/http_connection.rb
49
+ - test/s3/test_helper.rb
50
+ - test/s3/test_right_s3.rb
51
+ - test/s3/test_right_s3_stubbed.rb
52
+ - test/sdb/test_active_sdb.rb
53
+ - test/sdb/test_helper.rb
54
+ - test/sdb/test_right_sdb.rb
55
+ - test/sqs/test_helper.rb
56
+ - test/sqs/test_right_sqs.rb
57
+ - test/sqs/test_right_sqs_gen2.rb
58
+ - test/test_credentials.rb
59
+ - test/ts_right_aws.rb
60
+ has_rdoc: false
61
+ homepage: http://github.com/monkeyhelper/right_aws
62
+ post_install_message:
63
+ rdoc_options:
64
+ - --charset=UTF-8
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "0"
72
+ version:
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: "0"
78
+ version:
79
+ requirements: []
80
+
81
+ rubyforge_project:
82
+ rubygems_version: 1.2.0
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: Mirror of right_aws 1.10.0 with sdb invalid signature fix
86
+ test_files:
87
+ - test/sqs/test_right_sqs.rb
88
+ - test/sqs/test_right_sqs_gen2.rb
89
+ - test/sqs/test_helper.rb
90
+ - test/sdb/test_right_sdb.rb
91
+ - test/sdb/test_active_sdb.rb
92
+ - test/sdb/test_helper.rb
93
+ - test/test_credentials.rb
94
+ - test/http_connection.rb
95
+ - test/ts_right_aws.rb
96
+ - test/s3/test_right_s3.rb
97
+ - test/s3/test_helper.rb
98
+ - test/s3/test_right_s3_stubbed.rb
99
+ - test/acf/test_right_acf.rb
100
+ - test/acf/test_helper.rb
101
+ - test/ec2/test_right_ec2.rb
102
+ - test/ec2/test_helper.rb