diff options
author | jasl <jasl9187@hotmail.com> | 2017-03-11 10:17:46 +0800 |
---|---|---|
committer | jasl <jasl9187@hotmail.com> | 2017-03-11 10:17:46 +0800 |
commit | ddb798acaab48bc0ed278c9f3c1ace78722e4217 (patch) | |
tree | 49384287905ab6f8b269d65cd20a4740d7bbfa98 /activemodel | |
parent | 37770bc8d13c5c7af024e66539c79f966718aec0 (diff) | |
download | rails-ddb798acaab48bc0ed278c9f3c1ace78722e4217.tar.gz rails-ddb798acaab48bc0ed278c9f3c1ace78722e4217.tar.bz2 rails-ddb798acaab48bc0ed278c9f3c1ace78722e4217.zip |
Remove non-exists method delegation and correct doc
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/type.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/activemodel/lib/active_model/type.rb b/activemodel/lib/active_model/type.rb index b8e6d2376b..095801d8f0 100644 --- a/activemodel/lib/active_model/type.rb +++ b/activemodel/lib/active_model/type.rb @@ -21,16 +21,8 @@ module ActiveModel class << self attr_accessor :registry # :nodoc: - delegate :add_modifier, to: :registry - # Add a new type to the registry, allowing it to be referenced as a - # symbol by ActiveRecord::Attributes::ClassMethods#attribute. If your - # type is only meant to be used with a specific database adapter, you can - # do so by passing +adapter: :postgresql+. If your type has the same - # name as a native type for the current adapter, an exception will be - # raised unless you specify an +:override+ option. +override: true+ will - # cause your type to be used instead of the native type. +override: - # false+ will cause the native type to be used over yours if one exists. + # Add a new type to the registry, allowing it to be get through ActiveModel::Type#lookup def register(type_name, klass = nil, **options, &block) registry.register(type_name, klass, **options, &block) end |