Class: Barkdog::DSL::Context::Monitor

Inherits:
Object
  • Object
show all
Includes:
TemplateHelper
Defined in:
lib/barkdog/dsl/context/monitor.rb

Defined Under Namespace

Classes: Options

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from TemplateHelper

#context, #include_template

Constructor Details

#initialize(context, name, &block) ⇒ Monitor

Returns a new instance of Monitor.



4
5
6
7
8
9
# File 'lib/barkdog/dsl/context/monitor.rb', line 4

def initialize(context, name, &block)
  @monitor_name = name
  @context = context.merge(:monitor_name => name)
  @result = {}
  instance_eval(&block)
end

Instance Attribute Details

#resultObject (readonly)

Returns the value of attribute result.



11
12
13
# File 'lib/barkdog/dsl/context/monitor.rb', line 11

def result
  @result
end