Object
Configuration object for global and per coercer type settings
Build a configuration instance
@param [Array] list of accessor keys
@return [Configuration]
@api private
# File lib/coercible/configuration.rb, line 14 def self.build(keys, &block) config = new keys.each do |key| config.instance_eval def #{key} @#{key} end def #{key}=(value) @#{key} = value end end yield(config) if block_given? config end
Generated with the Darkfish Rdoc Generator 2.