Files
dunlop-core/app/services/dunlop/workflow.rb
T

14 lines
283 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