Flowdock
method

extract_node_value

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: WhereClause
extract_node_value(node) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/where_clause.rb, line 221
        def extract_node_value(node)
          if node.respond_to?(:value_before_type_cast)
            node.value_before_type_cast
          elsif Array === node
            node.map { |v| extract_node_value(v) }
          end
        end
Register or log in to add new notes.