class BigBench::Tracker::Tracker

Attributes

trackings[RW]

Public Class Methods

new() click to toggle source
# File lib/bigbench/tracker.rb, line 16
def initialize
  @trackings = []
end

Public Instance Methods

track(object) click to toggle source
# File lib/bigbench/tracker.rb, line 20
def track object
  @trackings << object
end