lib/rocketman/config.rb in rocketman-0.1.1 vs lib/rocketman/config.rb in rocketman-0.2.0

- old
+ new

@@ -6,13 +6,15 @@ def self.configure yield(configuration) end class Configuration - attr_accessor :worker_count, :latency + attr_accessor :worker_count, :latency, :storage, :debug def initialize @worker_count = 5 @latency = 3 + @storage= nil + @debug = false end end end