diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-02-26 06:14:17 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-02-26 06:16:24 +0900 |
commit | 3579876931381fd6abff99bd6e739169a8fcb489 (patch) | |
tree | e56cb9b801b92d699c548e179933f841d69f62db /activemodel/lib/active_model/attribute_set | |
parent | 91b30a001b79096b60d9424a4664a417dce0b767 (diff) | |
download | rails-3579876931381fd6abff99bd6e739169a8fcb489.tar.gz rails-3579876931381fd6abff99bd6e739169a8fcb489.tar.bz2 rails-3579876931381fd6abff99bd6e739169a8fcb489.zip |
Active Model: Use private attr_reader
Follow up of 6d63b5e49a399fe246afcebad45c3c962de268fa.
Diffstat (limited to 'activemodel/lib/active_model/attribute_set')
-rw-r--r-- | activemodel/lib/active_model/attribute_set/builder.rb | 4 | ||||
-rw-r--r-- | activemodel/lib/active_model/attribute_set/yaml_encoder.rb | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/attribute_set/builder.rb b/activemodel/lib/active_model/attribute_set/builder.rb index bf2d06b48a..2b1c2206ec 100644 --- a/activemodel/lib/active_model/attribute_set/builder.rb +++ b/activemodel/lib/active_model/attribute_set/builder.rb @@ -90,9 +90,6 @@ module ActiveModel end protected - - attr_reader :types, :values, :additional_types, :delegate_hash, :default_attributes - def materialize unless @materialized values.each_key { |key| self[key] } @@ -105,6 +102,7 @@ module ActiveModel end private + attr_reader :types, :values, :additional_types, :delegate_hash, :default_attributes def assign_default_value(name) type = additional_types.fetch(name, types[name]) diff --git a/activemodel/lib/active_model/attribute_set/yaml_encoder.rb b/activemodel/lib/active_model/attribute_set/yaml_encoder.rb index 4ea945b956..ea1efc160e 100644 --- a/activemodel/lib/active_model/attribute_set/yaml_encoder.rb +++ b/activemodel/lib/active_model/attribute_set/yaml_encoder.rb @@ -33,8 +33,7 @@ module ActiveModel end end - protected - + private attr_reader :default_types end end |