class PostmonRuby::Track

Attributes

historico[R]
not_found[R]

Public Class Methods

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