roadworker 0.3.4 → 0.3.5
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/lib/roadworker/route53-wrapper.rb +3 -3
- data/lib/roadworker/version.rb +1 -1
- metadata +2 -2
|
@@ -19,7 +19,7 @@ module Roadworker
|
|
|
19
19
|
:health_check,
|
|
20
20
|
]
|
|
21
21
|
|
|
22
|
-
RRSET_ATTRS_WITH_TYPE =
|
|
22
|
+
RRSET_ATTRS_WITH_TYPE = [:type] + RRSET_ATTRS
|
|
23
23
|
|
|
24
24
|
def initialize(options)
|
|
25
25
|
@options = options
|
|
@@ -198,11 +198,11 @@ module Roadworker
|
|
|
198
198
|
actual = nil if actual.kind_of?(Array) && actual.empty?
|
|
199
199
|
|
|
200
200
|
if (expected and !actual) or (!expected and actual)
|
|
201
|
-
log(:info, " set #{attr}=#{expected.inspect}" , :green
|
|
201
|
+
log(:info, " set #{attr}=#{expected.inspect}" , :green)
|
|
202
202
|
self.send(:"#{attr}=", expected) unless @options.dry_run
|
|
203
203
|
elsif expected and actual
|
|
204
204
|
if expected != actual
|
|
205
|
-
log(:info, " set #{attr}=#{expected.inspect}" , :green
|
|
205
|
+
log(:info, " set #{attr}=#{expected.inspect}" , :green)
|
|
206
206
|
self.send(:"#{attr}=", expected) unless @options.dry_run
|
|
207
207
|
end
|
|
208
208
|
end
|
data/lib/roadworker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roadworker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-08-
|
|
12
|
+
date: 2013-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aws-sdk
|