class Movescount::Point
Attributes
move[RW]
Public Class Methods
new(move, attributes = {})
click to toggle source
Calls superclass method
# File lib/movescount/point.rb, line 5 def initialize(move, attributes = {}) @move = move super attributes end
Public Instance Methods
MeasuredAt()
click to toggle source
Make sure that MeasuredAt
falls back to the time of the sample
Calls superclass method
# File lib/movescount/point.rb, line 11 def MeasuredAt super || DateTime.parse(self.LocalTime) end