ironfan 4.8.0 → 4.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -2
- data/VERSION +1 -1
- data/ironfan.gemspec +2 -2
- data/lib/ironfan/provider/ec2/machine.rb +7 -1
- metadata +3 -3
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -6,8 +6,7 @@ gem 'formatador', "~> 0.2"
|
|
6
6
|
gem 'gorillib', "~> 0.4.2"
|
7
7
|
|
8
8
|
# Everything in the world is being a stupid dick about JSON versions. Pin it
|
9
|
-
# to the one that doesn't seem to angrify everyone.
|
10
|
-
# 10.16 branch.
|
9
|
+
# to the one that doesn't seem to angrify everyone.
|
11
10
|
gem 'json', "= 1.5.4"
|
12
11
|
|
13
12
|
group :development do
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.8.
|
1
|
+
4.8.1
|
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.
|
8
|
+
s.version = "4.8.1"
|
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-
|
12
|
+
s.date = "2013-02-15"
|
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 = [
|
@@ -161,7 +161,13 @@ module Ironfan
|
|
161
161
|
computer.machine = machine
|
162
162
|
remember machine, :id => computer.name
|
163
163
|
|
164
|
-
|
164
|
+
# AWS sometimes takes too long to respond for this block's liking.
|
165
|
+
# Expand its wait interval, so that it doesn't just bomb out
|
166
|
+
# after three quick failures in succession.
|
167
|
+
# For more info, see:
|
168
|
+
# - http://rubydoc.info/gems/fog/1.9.0/Fog/Model#wait_for-instance_method
|
169
|
+
# - https://github.com/fog/fog/blob/master/lib/fog/core/wait_for.rb
|
170
|
+
fog_server.wait_for(Fog.timeout, 5) { ready? }
|
165
171
|
end
|
166
172
|
|
167
173
|
# tag the computer correctly
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 4.8.
|
5
|
+
version: 4.8.1
|
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-
|
13
|
+
date: 2013-02-15 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: -
|
287
|
+
hash: -312595991163601203
|
288
288
|
segments:
|
289
289
|
- 0
|
290
290
|
version: "0"
|