Sha256: fd0777242566d1e1e5783916d468f65318363c2e0fdbda0b976693bf1df3727d
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
module ActiveData class Config include Singleton attr_accessor :include_root_in_json, :i18n_scope, :logger, :primary_attribute, :_normalizers, :_typecasters def self.delegated public_instance_methods - superclass.public_instance_methods - Singleton.public_instance_methods end def initialize @include_root_in_json = false @i18n_scope = :active_data @logger = Logger.new(STDERR) @primary_attribute = :id @_normalizers = {} @_typecasters = {} end def normalizer(name, &block) if block _normalizers[name.to_sym] = block else _normalizers[name.to_sym] or raise NormalizerMissing, name end end def typecaster(*classes, &block) classes = classes.flatten if block _typecasters[classes.first.to_s.camelize] = block else _typecasters[classes.detect do |klass| _typecasters[klass.to_s.camelize] end.to_s.camelize] or raise TypecasterMissing, classes end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_data-1.1.0 | lib/active_data/config.rb |