1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00
endofunky--sidetiq/lib/sidetiq/config.rb
2013-01-31 17:42:19 +00:00

14 lines
169 B
Ruby

module Sidetiq
class << self
attr_writer :config
def configure
yield config
end
def config
@config ||= OpenStruct.new
end
end
end