Module: ClientSideValidations::ActiveModel::EnumerableValidator
Instance Method Summary collapse
Instance Method Details
#client_side_hash(model, attribute, force = nil) ⇒ Object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/client_side_validations/active_model.rb', line 169 def client_side_hash(model, attribute, force = nil) = self..dup if [:in].respond_to?(:call) return unless force [:in] = [:in].call(model) end hash = build_client_side_hash(model, attribute, ) if hash[:in].is_a?(Range) hash[:range] = hash[:in] hash.delete(:in) end hash end |