ironfan 4.8.3 → 4.8.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v4.8.4
2
+ * Fixing relevant? semantics in cluster_stop and cluster_start
3
+
1
4
  # v4.8.3
2
5
  * Bogus servers should not be killable (fixes #250)
3
6
  * Style guide corrections ('&&', not 'and'; don't use single-letter variable names)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.8.3
1
+ 4.8.4
data/ironfan.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "ironfan"
8
- s.version = "4.8.3"
8
+ s.version = "4.8.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Infochimps"]
12
- s.date = "2013-02-26"
12
+ s.date = "2013-02-27"
13
13
  s.description = "Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks."
14
14
  s.email = "coders@infochimps.com"
15
15
  s.extra_rdoc_files = [
@@ -23,8 +23,8 @@ class Chef
23
23
  class ClusterStart < Ironfan::Script
24
24
  import_banner_and_options(Ironfan::Script)
25
25
 
26
- def relevant?(server)
27
- (not bogus?) && stopped?
26
+ def relevant?(computer)
27
+ (not computer.bogus?) && computer.stopped?
28
28
  end
29
29
 
30
30
  def perform_execution(target)
@@ -23,8 +23,8 @@ class Chef
23
23
  class ClusterStop < Ironfan::Script
24
24
  import_banner_and_options(Ironfan::Script)
25
25
 
26
- def relevant?(server)
27
- (not bogus?) && server.running?
26
+ def relevant?(computer)
27
+ (not computer.bogus?) && computer.running?
28
28
  end
29
29
 
30
30
  def perform_execution(target)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ironfan
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 4.8.3
5
+ version: 4.8.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Infochimps
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2013-02-26 00:00:00 Z
13
+ date: 2013-02-27 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: chef
@@ -284,7 +284,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
284
284
  requirements:
285
285
  - - ">="
286
286
  - !ruby/object:Gem::Version
287
- hash: 4061434417282222505
287
+ hash: -3797821148458138452
288
288
  segments:
289
289
  - 0
290
290
  version: "0"