class PostmonRuby::State

Attributes

not_found[R]

Public Class Methods

new(options={}) click to toggle source
# File lib/postmon_ruby/state.rb, line 8
def initialize(options={})
  @not_found = true if options.not_found?
  @@state_attributes.each do |attribute|
    send(:"#{attribute}=", options[attribute.to_s] || "") 
  end
end