Sha256: 10bd4a9a7fbeec52e382eb23648c9d9ae8fd9be2879f51e341b107d55b764d1b
Contents?: true
Size: 966 Bytes
Versions: 1
Compression:
Stored size: 966 Bytes
Contents
require 'ostruct' module ActionLogic class ActionConfiguration def self.configure(&block) block.call(configuration_options) end def self.configuration_options @configuration_options ||= OpenStruct.new end def self.benchmark? configuration_options.benchmark || false end def self.benchmark_log configuration_options.benchmark_log || $stdout end def self.benchmark_formatter custom_benchmark_formatter || default_formatter end def self.reset! @configuration_options = OpenStruct.new @custom_benchmark_formatter = nil @default_formatter = nil end def self.custom_benchmark_formatter @custom_benchmark_formatter ||= configuration_options.benchmark_formatter && configuration_options.benchmark_formatter.new end def self.default_formatter @default_formatter ||= ::ActionLogic::ActionBenchmark::DefaultFormatter.new end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
action_logic-0.2.4 | lib/action_logic/action_configuration.rb |