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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fog (0.3.18)
4
+ fog (0.3.19)
5
5
  builder
6
6
  excon (>= 0.2.4)
7
7
  formatador (>= 0.0.15)
@@ -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 or via email on the {mailing list}[http://groups.google.com/group/ruby-fog]
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)
@@ -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.18'
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
@@ -18,7 +18,7 @@ module Fog
18
18
  @mocking = false
19
19
 
20
20
  unless const_defined?(:VERSION)
21
- VERSION = '0.3.18'
21
+ VERSION = '0.3.19'
22
22
  end
23
23
 
24
24
  module Mock
@@ -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], 1)
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], 1)
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], 1)
23
+ params = AWS.indexed_param('Instances.member.%d.InstanceId', [*instance_ids])
24
24
  request({
25
25
  'Action' => 'RegisterInstancesWithLoadBalancer',
26
26
  'LoadBalancerName' => lb_name,
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 18
9
- version: 0.3.18
8
+ - 19
9
+ version: 0.3.19
10
10
  platform: ruby
11
11
  authors:
12
12
  - geemus (Wesley Beary)