class HOC::Hits

Set of hits.

Attributes

date[R]
total[R]

Public Class Methods

new(date, total) click to toggle source
# File lib/hoc/hits.rb, line 24
def initialize(date, total)
  @date = date
  @total = total
end