Sha256: bd36ff0922d25689803868c2298f9ba066a241e1fe7b109a2ce5ff04178f1817
Contents?: true
Size: 727 Bytes
Versions: 1
Compression:
Stored size: 727 Bytes
Contents
require 'rubyonacid/factory' module RubyOnAcid class IncrementFactory < Factory #The amount to increment counters by. attr_accessor :interval def interval=(value) @interval = value @start_value = (@interval < 0.0 ? 1.0 : 0.0) @counters.each_key{|k| @counters[k] = @start_value} end def initialize(interval = 0.001) super @start_value = 0.0 @counters = {} @interval = interval end #Increment counter for given key and return it. Constrain between 0 and 1. def get_unit(key) @counters[key] ||= @start_value @counters[key] += @interval @counters[key] = 1.0 if @counters[key] > 1.0 @counters[key] = 0.0 if @counters[key] < 0.0 @counters[key] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubyonacid-0.2.0 | lib/rubyonacid/factories/increment.rb |