Flowdock
method

keys_to_strings

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: HTML::Conditions
keys_to_strings(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_controller/vendor/html-scanner/html/node.rb, line 40
      def keys_to_strings(hash)
        hash.keys.inject({}) do |h,k|
          h[k.to_s] = hash[k]
          h
        end
      end
Register or log in to add new notes.