diff options
author | MSP-Greg <MSP-Greg@users.noreply.github.com> | 2016-12-16 13:35:37 -0600 |
---|---|---|
committer | MSP-Greg <MSP-Greg@users.noreply.github.com> | 2016-12-16 13:35:37 -0600 |
commit | e41c6ec8889af90e52ba3f7bafae01de112ec8a3 (patch) | |
tree | fa3f7b08848cb84beaf6916997324d059eed2f1f /activemodel/lib | |
parent | b89f1aa7601fb6e8f24f33ed1cbdb590023c5282 (diff) | |
download | rails-e41c6ec8889af90e52ba3f7bafae01de112ec8a3.tar.gz rails-e41c6ec8889af90e52ba3f7bafae01de112ec8a3.tar.bz2 rails-e41c6ec8889af90e52ba3f7bafae01de112ec8a3.zip |
Change ActiveModel::Type::Helpers to :nodoc: [ci skip]
Diffstat (limited to 'activemodel/lib')
4 files changed, 8 insertions, 8 deletions
diff --git a/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb b/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb index facea12704..f783d286c5 100644 --- a/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb +++ b/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb @@ -1,7 +1,7 @@ module ActiveModel module Type - module Helpers - class AcceptsMultiparameterTime < Module # :nodoc: + module Helpers # :nodoc: all + class AcceptsMultiparameterTime < Module def initialize(defaults: {}) define_method(:cast) do |value| if value.is_a?(Hash) diff --git a/activemodel/lib/active_model/type/helpers/mutable.rb b/activemodel/lib/active_model/type/helpers/mutable.rb index 4dddbe4e5e..f3a17a1698 100644 --- a/activemodel/lib/active_model/type/helpers/mutable.rb +++ b/activemodel/lib/active_model/type/helpers/mutable.rb @@ -1,7 +1,7 @@ module ActiveModel module Type - module Helpers - module Mutable # :nodoc: + module Helpers # :nodoc: all + module Mutable def cast(value) deserialize(serialize(value)) end diff --git a/activemodel/lib/active_model/type/helpers/numeric.rb b/activemodel/lib/active_model/type/helpers/numeric.rb index 98533f8771..275822b738 100644 --- a/activemodel/lib/active_model/type/helpers/numeric.rb +++ b/activemodel/lib/active_model/type/helpers/numeric.rb @@ -1,7 +1,7 @@ module ActiveModel module Type - module Helpers - module Numeric # :nodoc: + module Helpers # :nodoc: all + module Numeric def cast(value) value = \ case value diff --git a/activemodel/lib/active_model/type/helpers/time_value.rb b/activemodel/lib/active_model/type/helpers/time_value.rb index 721f9543ed..e57a52104b 100644 --- a/activemodel/lib/active_model/type/helpers/time_value.rb +++ b/activemodel/lib/active_model/type/helpers/time_value.rb @@ -2,8 +2,8 @@ require "active_support/core_ext/time/zones" module ActiveModel module Type - module Helpers - module TimeValue # :nodoc: + module Helpers # :nodoc: all + module TimeValue def serialize(value) value = apply_seconds_precision(value) |