fog 0.3.18 → 0.3.19
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.
- data/Gemfile.lock +1 -1
- data/README.rdoc +2 -1
- data/fog.gemspec +1 -1
- data/lib/fog.rb +1 -1
- data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +1 -1
- data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +1 -1
- data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/README.rdoc
CHANGED
@@ -117,7 +117,8 @@ There are also the basics of these providers (that could use your love):
|
|
117
117
|
Enjoy, and let me know what I can do to continue improving fog!
|
118
118
|
|
119
119
|
* Follow {@fog}[http://twitter.com/fog] and/or {@geemus}[http://twitter.com/geemus] on Twitter
|
120
|
-
* Discuss in irc on the {#ruby-fog}[irc://irc.freenode.net/ruby-fog] channel on Freenode
|
120
|
+
* Discuss in irc on the {#ruby-fog}[irc://irc.freenode.net/ruby-fog] channel on Freenode
|
121
|
+
* Discuss via email on the {mailing list}[http://groups.google.com/group/ruby-fog] (note: release notes appear on this list)
|
121
122
|
* See upcoming work in the {tracker}[http://www.pivotaltracker.com/projects/54635]
|
122
123
|
* Report bugs in {issues}[http://github.com/geemus/fog/issues]
|
123
124
|
* Learn about {contributing}[http://github.com/geemus/fog/wiki/contributor-guide] or find more info about the {Providers}[http://github.com/geemus/fog/wiki/Providers] (including some todo items)
|
data/fog.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
8
8
|
## the sub! line in the Rakefile
|
9
9
|
s.name = 'fog'
|
10
|
-
s.version = '0.3.
|
10
|
+
s.version = '0.3.19'
|
11
11
|
s.date = '2010-11-16'
|
12
12
|
s.rubyforge_project = 'fog'
|
13
13
|
|
data/lib/fog.rb
CHANGED
@@ -19,7 +19,7 @@ module Fog
|
|
19
19
|
# * 'DisableAvailabilityZonesForLoadBalancerResult'<~Hash>:
|
20
20
|
# * 'AvailabilityZones'<~Array> - array of strings describing instances currently enabled
|
21
21
|
def disable_availability_zones_for_load_balancer(availability_zones, lb_name)
|
22
|
-
params = AWS.indexed_param('AvailabilityZones.member', [*availability_zones]
|
22
|
+
params = AWS.indexed_param('AvailabilityZones.member', [*availability_zones])
|
23
23
|
request({
|
24
24
|
'Action' => 'DisableAvailabilityZonesForLoadBalancer',
|
25
25
|
'LoadBalancerName' => lb_name,
|
@@ -19,7 +19,7 @@ module Fog
|
|
19
19
|
# * 'EnableAvailabilityZonesForLoadBalancerResult'<~Hash>:
|
20
20
|
# * 'AvailabilityZones'<~Array> - array of strings describing instances currently enabled
|
21
21
|
def enable_availability_zones_for_load_balancer(availability_zones, lb_name)
|
22
|
-
params = AWS.indexed_param('AvailabilityZones.member', [*availability_zones]
|
22
|
+
params = AWS.indexed_param('AvailabilityZones.member', [*availability_zones])
|
23
23
|
request({
|
24
24
|
'Action' => 'EnableAvailabilityZonesForLoadBalancer',
|
25
25
|
'LoadBalancerName' => lb_name,
|
@@ -20,7 +20,7 @@ module Fog
|
|
20
20
|
# * 'Instances'<~Array> - array of hashes describing instances currently enabled
|
21
21
|
# * 'InstanceId'<~String>
|
22
22
|
def register_instances_with_load_balancer(instance_ids, lb_name)
|
23
|
-
params = AWS.indexed_param('Instances.member.%d.InstanceId', [*instance_ids]
|
23
|
+
params = AWS.indexed_param('Instances.member.%d.InstanceId', [*instance_ids])
|
24
24
|
request({
|
25
25
|
'Action' => 'RegisterInstancesWithLoadBalancer',
|
26
26
|
'LoadBalancerName' => lb_name,
|