Flowdock
method

keys_to_symbols

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: HTML::Conditions
keys_to_symbols(hash) private

No documentation

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

Hide source
# File actionpack/lib/action_view/vendor/html-scanner/html/node.rb, line 44
      def keys_to_symbols(hash)
        Hash[hash.keys.map do |k|
          raise "illegal key #{k.inspect}" unless k.respond_to?(:to_sym)
          [k.to_sym, hash[k]]
        end]
      end
Register or log in to add new notes.