Files
dunlop-core/app/services/dunlop/workflow.rb
T
2018-01-20 13:02:44 -03:00

14 lines
281 B
Ruby

# https://robots.thoughtbot.com/mygem-configure-block
module Dunlop::Workflow
class << self
attr_accessor :configuration
def configuration
@configuration ||= Dunlop::Workflow::Configuration.new
end
end
def self.configure
yield(configuration)
end
end