class GTP::Measure

Constants

FIELDS

Public Instance Methods

==(o) click to toggle source
# File lib/GTP/measure.rb, line 6
def ==(o)
  o.class == self.class && o.state == state
end

Protected Instance Methods

state() click to toggle source
# File lib/GTP/measure.rb, line 11
def state
  info = Array.new
  FIELDS.each do |f|
    info.push(f)
  end
end