lib/callisto/pool.rb in callisto-0.9 vs lib/callisto/pool.rb in callisto-0.9.1

- old
+ new

@@ -15,14 +15,14 @@ defaults = { :max_workers => 10, :identifier => proc { |entry| entry.object_id }, :callback => proc { |entry| entry.call } } - @@settings = OpenStruct.new(defaults.merge(options)) + @settings = OpenStruct.new(defaults.merge(options)) end def settings - @@settings + @settings end end def initialize