lib/test_ids/configuration.rb in test_ids-0.6.1 vs lib/test_ids/configuration.rb in test_ids-0.7.0
- old
+ new
@@ -1,12 +1,13 @@
module TestIds
class Configuration
class Item
- attr_accessor :include, :exclude, :algorithm
+ attr_accessor :include, :exclude, :algorithm, :size
def initialize
@include = BinArray.new
@exclude = BinArray.new
+ @size = 1
end
def callback(&block)
if block_given?
@callback = block