1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
module Coercible
# Configuration object for global and per coercer type settings
#
class Configuration
# Build a configuration instance
#
# @param [Array] list of accessor keys
#
# @return [Configuration]
#
# @api private
def self.build(keys, &block)
config = new
keys.each do |key|
config.instance_eval <<-RUBY
def #{key}
@#{key}
end
def #{key}=(value)
@#{key} = value
end
RUBY
end
yield(config) if block_given?
config
end
end # class Configuration
end # module Coercible
|