Class: Roadworker::Client
- Inherits:
-
Object
- Object
- Roadworker::Client
- Includes:
- Log
- Defined in:
- lib/roadworker/client.rb
Instance Method Summary collapse
- #apply(file) ⇒ Object
- #export ⇒ Object
-
#initialize(options = {}) ⇒ Client
constructor
A new instance of Client.
- #test(file) ⇒ Object
Methods included from Log
Constructor Details
#initialize(options = {}) ⇒ Client
Returns a new instance of Client.
13 14 15 16 17 18 19 |
# File 'lib/roadworker/client.rb', line 13 def initialize( = {}) = OpenStruct.new() .logger ||= Logger.new($stdout) String.colorize = .color .route53 = AWS::Route53.new @route53 = Route53Wrapper.new() end |
Instance Method Details
#apply(file) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/roadworker/client.rb', line 21 def apply(file) dsl = load_file(file) updated = false if dsl.hosted_zones.empty? and not .force log(:warn, "Nothing is defined (pass `--force` if you want to remove)", :yellow) else AWS.memoize { walk_hosted_zones(dsl) updated = .updated } end return updated end |
#export ⇒ Object
37 38 39 40 |
# File 'lib/roadworker/client.rb', line 37 def export exported = AWS.memoize { @route53.export } DSL.convert(exported) end |
#test(file) ⇒ Object
42 43 44 45 |
# File 'lib/roadworker/client.rb', line 42 def test(file) dsl = load_file(file) DSL.test(dsl, ) end |