Method: Conscriptor::EventCounter#record_many

Defined in:
lib/conscriptor/event_counter.rb

#record_many(event, how_many) ⇒ Object



23
24
25
26
# File 'lib/conscriptor/event_counter.rb', line 23

def record_many(event, how_many)
  @counts[event] ||= 0
  @counts[event] += how_many
end