# File lib/active_support/core_ext/hash/keys.rb, line 22
        def symbolize_keys
          inject({}) do |options, (key, value)|
            options[(key.to_sym rescue key) || key] = value
            options
          end
        end