Flowdock
method

parse_raw_value_as_a_number

Importance_0
parse_raw_value_as_a_number(raw_value) protected

No documentation

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

Hide source
# File activemodel/lib/active_model/validations/numericality.rb, line 63
      def parse_raw_value_as_a_number(raw_value)
        Kernel.Float(raw_value) if raw_value !~ /\A0[xX]/
      rescue ArgumentError, TypeError
        nil
      end
Register or log in to add new notes.