Reset all ticks
tick_reset_all  
Reset all ticks - default and keyed
Introduced in v2.6
Example
 
  | # Example 1 | 
  | 
tick     
  tick
  tick :foo
  tick :foo
  tick :foo
  puts look
  puts look(:foo)
  tick_reset_all
  puts look
  puts look(:foo)
 | 
# increment default tick and tick :foo
 
 
 
 
#=> 1
#=> 2
 
#=> 0
#=> 0
 |