guignol 0.3.12 → 0.3.13
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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/Gemfile.lock +13 -13
- data/guignol.gemspec +1 -1
- data/lib/guignol/models/instance.rb +3 -1
- data/lib/guignol/version.rb +1 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd0e8ac6dfeba47a9cee787ecf45ac0049c81dda
|
|
4
|
+
data.tar.gz: a5f541a750223f96e9171349ed05b5030b08bf00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e480555341e5791fc3fe82affca96848e256e1b32970224bf5de5603ee3f0c6b2a47fa6f7f077497588dfc79327cd38b5ca20d01123610181885a167c9ba626
|
|
7
|
+
data.tar.gz: 3d92d4c482f48b9ac2c47ea5b1ff0a29c26dd056a5b7b7a5dfc3921417fe72a704f4488c3c4b6f823e8aeb81aedeb3351598a384dd84468b0bdef21b8fd69315
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.0.0-
|
|
1
|
+
2.0.0-p353
|
data/Gemfile.lock
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
guignol (0.3.
|
|
4
|
+
guignol (0.3.13)
|
|
5
5
|
activesupport
|
|
6
6
|
fog (~> 1.12.0)
|
|
7
7
|
parallel (~> 0.6.2)
|
|
8
|
-
thor
|
|
8
|
+
thor (>= 0.15)
|
|
9
9
|
uuidtools
|
|
10
10
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (4.0.
|
|
15
|
-
i18n (~> 0.6, >= 0.6.
|
|
14
|
+
activesupport (4.0.4)
|
|
15
|
+
i18n (~> 0.6, >= 0.6.9)
|
|
16
16
|
minitest (~> 4.2)
|
|
17
17
|
multi_json (~> 1.3)
|
|
18
18
|
thread_safe (~> 0.1)
|
|
19
19
|
tzinfo (~> 0.3.37)
|
|
20
|
-
atomic (1.1.
|
|
20
|
+
atomic (1.1.16)
|
|
21
21
|
builder (3.2.2)
|
|
22
22
|
coderay (1.0.9)
|
|
23
23
|
diff-lcs (1.2.4)
|
|
@@ -35,13 +35,13 @@ GEM
|
|
|
35
35
|
formatador (0.2.4)
|
|
36
36
|
i18n (0.6.9)
|
|
37
37
|
method_source (0.8.1)
|
|
38
|
-
mime-types (2.
|
|
38
|
+
mime-types (2.2)
|
|
39
39
|
minitest (4.7.5)
|
|
40
|
-
multi_json (1.
|
|
40
|
+
multi_json (1.9.2)
|
|
41
41
|
net-scp (1.1.2)
|
|
42
42
|
net-ssh (>= 2.6.5)
|
|
43
|
-
net-ssh (2.
|
|
44
|
-
nokogiri (1.5.
|
|
43
|
+
net-ssh (2.8.0)
|
|
44
|
+
nokogiri (1.5.11)
|
|
45
45
|
parallel (0.6.5)
|
|
46
46
|
pry (0.9.12.2)
|
|
47
47
|
coderay (~> 1.0.5)
|
|
@@ -60,10 +60,10 @@ GEM
|
|
|
60
60
|
rspec-mocks (2.13.1)
|
|
61
61
|
ruby-hmac (0.4.0)
|
|
62
62
|
slop (3.4.5)
|
|
63
|
-
thor (0.
|
|
64
|
-
thread_safe (0.1
|
|
65
|
-
atomic
|
|
66
|
-
tzinfo (0.3.
|
|
63
|
+
thor (0.19.1)
|
|
64
|
+
thread_safe (0.3.1)
|
|
65
|
+
atomic (>= 1.1.7, < 2)
|
|
66
|
+
tzinfo (0.3.39)
|
|
67
67
|
uuidtools (2.1.4)
|
|
68
68
|
|
|
69
69
|
PLATFORMS
|
data/guignol.gemspec
CHANGED
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.add_dependency "parallel", '~> 0.6.2'
|
|
28
28
|
s.add_dependency "activesupport"
|
|
29
29
|
s.add_dependency "uuidtools"
|
|
30
|
-
s.add_dependency "thor"
|
|
30
|
+
s.add_dependency "thor", '>= 0.15'
|
|
31
31
|
|
|
32
32
|
s.files = `git ls-files`.split("\n")
|
|
33
33
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
@@ -241,6 +241,8 @@ module Guignol::Models
|
|
|
241
241
|
log "warning, while removing, DNS record exist but does not point to the current server"
|
|
242
242
|
end
|
|
243
243
|
DNS_MUTEX.synchronize { record.destroy }
|
|
244
|
+
else
|
|
245
|
+
log "Unable to find record."
|
|
244
246
|
end
|
|
245
247
|
|
|
246
248
|
return self
|
|
@@ -266,7 +268,7 @@ module Guignol::Models
|
|
|
266
268
|
end
|
|
267
269
|
|
|
268
270
|
def dns_record
|
|
269
|
-
dns_zone.records.find { |record| record.name == fqdn }
|
|
271
|
+
dns_zone.records.all!.find { |record| record.name == fqdn }
|
|
270
272
|
end
|
|
271
273
|
|
|
272
274
|
def dns_record_matches?(record)
|
data/lib/guignol/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guignol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julien Letessier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -142,14 +142,14 @@ dependencies:
|
|
|
142
142
|
requirements:
|
|
143
143
|
- - '>='
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: '0'
|
|
145
|
+
version: '0.15'
|
|
146
146
|
type: :runtime
|
|
147
147
|
prerelease: false
|
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
149
|
requirements:
|
|
150
150
|
- - '>='
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: '0'
|
|
152
|
+
version: '0.15'
|
|
153
153
|
description: "\n Create, start, stop, destroy instances from the command line\n
|
|
154
154
|
\ based on a YAML description of your instances.\n "
|
|
155
155
|
email:
|
|
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
219
219
|
version: 1.3.6
|
|
220
220
|
requirements: []
|
|
221
221
|
rubyforge_project:
|
|
222
|
-
rubygems_version: 2.0.
|
|
222
|
+
rubygems_version: 2.0.14
|
|
223
223
|
signing_key:
|
|
224
224
|
specification_version: 4
|
|
225
225
|
summary: Manipulate Amazon EC2 instances
|