Flowdock
method

deep_to_h

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: XMLConverter
deep_to_h(value) private

No documentation

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

Hide source
# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 152
      def deep_to_h(value)
        case value
          when Hash
            process_hash(value)
          when Array
            process_array(value)
          when String
            value
          else
            raise "can't typecast #{value.class.name} - #{value.inspect}"
        end
      end
Register or log in to add new notes.