Class: ActiveModel::Type::Helpers::AcceptsMultiparameterTime
- Defined in:
- activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb
Defined Under Namespace
Modules: InstanceMethods
Constant Summary
Constants inherited from Module
Module::DELEGATION_RESERVED_KEYWORDS, Module::DELEGATION_RESERVED_METHOD_NAMES, Module::RUBY_RESERVED_KEYWORDS
Instance Method Summary collapse
-
#initialize(defaults: {}) ⇒ AcceptsMultiparameterTime
constructor
A new instance of AcceptsMultiparameterTime.
Methods inherited from Module
#alias_attribute, #anonymous?, #as_json, #attr_internal_accessor, #attr_internal_reader, #attr_internal_writer, #delegate, #delegate_missing_to, #deprecate, #mattr_accessor, #mattr_reader, #mattr_writer, #method_visibility, #module_parent, #module_parent_name, #module_parents, #redefine_method, #redefine_singleton_method, #remove_possible_method, #remove_possible_singleton_method, #silence_redefinition_of_method, #thread_mattr_accessor, #thread_mattr_reader, #thread_mattr_writer
Methods included from Module::Concerning
Constructor Details
#initialize(defaults: {}) ⇒ AcceptsMultiparameterTime
Returns a new instance of AcceptsMultiparameterTime.
37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb', line 37 def initialize(defaults: {}) include InstanceMethods define_method(:value_from_multiparameter_assignment) do |values_hash| defaults.each do |k, v| values_hash[k] ||= v end return unless values_hash[1] && values_hash[2] && values_hash[3] values = values_hash.sort.map!(&:last) ::Time.public_send(default_timezone, *values) end private :value_from_multiparameter_assignment end |