appoxy-aws 1.11.15 → 1.11.16
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.
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# Why the Fork?
|
|
2
|
+
|
|
3
|
+
This is a forked version of RightScale's AWS library and we forked it because:
|
|
4
|
+
|
|
5
|
+
1. RightScale wouldn't fix critical bugs that were reported in their forums.
|
|
6
|
+
1. It didn't work with Ruby 1.9 - this version does
|
|
7
|
+
1. RightScale doesn't have the source hosted for the community
|
|
8
|
+
1. We needed fixes and changes for [http://code.google.com/p/simple-record/ SimpleRecord] and didn't want to wait for RightScale to do it.
|
|
9
|
+
|
|
1
10
|
= RightScale Amazon Web Services Ruby Gems
|
|
2
11
|
|
|
3
12
|
Published by RightScale, Inc. under the MIT License.
|
|
@@ -78,8 +78,8 @@ module RightAws
|
|
|
78
78
|
|
|
79
79
|
API_VERSION = "2008-06-30"
|
|
80
80
|
DEFAULT_HOST = 'cloudfront.amazonaws.com'
|
|
81
|
-
DEFAULT_PORT =
|
|
82
|
-
DEFAULT_PROTOCOL = '
|
|
81
|
+
DEFAULT_PORT = 80
|
|
82
|
+
DEFAULT_PROTOCOL = 'http'
|
|
83
83
|
DEFAULT_PATH = '/'
|
|
84
84
|
|
|
85
85
|
@@bench = AwsBenchmarkingBlock.new
|
data/lib/ec2/right_ec2.rb
CHANGED
|
@@ -71,8 +71,8 @@ module RightAws
|
|
|
71
71
|
API_VERSION = "2008-12-01"
|
|
72
72
|
DEFAULT_HOST = "ec2.amazonaws.com"
|
|
73
73
|
DEFAULT_PATH = '/'
|
|
74
|
-
DEFAULT_PROTOCOL = '
|
|
75
|
-
DEFAULT_PORT =
|
|
74
|
+
DEFAULT_PROTOCOL = 'http'
|
|
75
|
+
DEFAULT_PORT = 80
|
|
76
76
|
|
|
77
77
|
# Default addressing type (public=NAT, direct=no-NAT) used when launching instances.
|
|
78
78
|
DEFAULT_ADDRESSING_TYPE = 'public'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appoxy-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.11.
|
|
4
|
+
version: 1.11.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Travis Reeder
|
|
@@ -21,7 +21,7 @@ executables: []
|
|
|
21
21
|
extensions: []
|
|
22
22
|
|
|
23
23
|
extra_rdoc_files:
|
|
24
|
-
- README.
|
|
24
|
+
- README.markdown
|
|
25
25
|
files:
|
|
26
26
|
- lib/acf/right_acf_interface.rb
|
|
27
27
|
- lib/awsbase/benchmark_fix.rb
|
|
@@ -37,7 +37,7 @@ files:
|
|
|
37
37
|
- lib/sqs/right_sqs_gen2.rb
|
|
38
38
|
- lib/sqs/right_sqs_gen2_interface.rb
|
|
39
39
|
- lib/sqs/right_sqs_interface.rb
|
|
40
|
-
- README.
|
|
40
|
+
- README.markdown
|
|
41
41
|
has_rdoc: true
|
|
42
42
|
homepage: http://github.com/appoxy/aws/
|
|
43
43
|
post_install_message:
|