Class: Gimme::InvocationStore

Inherits:
Store
  • Object
show all
Defined in:
lib/gimme/invocation_store.rb

Instance Method Summary collapse

Methods inherited from Store

#clear, #get, #initialize, #reset, #set

Constructor Details

This class inherits a constructor from Gimme::Store

Instance Method Details

#increment(double, method, args) ⇒ Object



5
6
7
# File 'lib/gimme/invocation_store.rb', line 5

def increment(double, method, args)
  set(double, method, args, get(double, method, args).to_i.succ)
end