Sha256: a4eb132cc2bdd0342903f7762dd883ec555583515ff6109420eed66928df377c
Contents?: true
Size: 289 Bytes
Versions: 1
Compression:
Stored size: 289 Bytes
Contents
module Rocketman def self.configuration @_configuration ||= Configuration.new end def self.configure yield(configuration) end class Configuration attr_accessor :worker_count, :latency def initialize @worker_count = 5 @latency = 3 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rocketman-0.1.1 | lib/rocketman/config.rb |