module Huyegger

Constants

DEFAULT_JSON_ENCODER
VERSION

Attributes

json_encoder[RW]

Public Class Methods

stringify_keys(hash) click to toggle source
# File lib/huyegger.rb, line 13
def self.stringify_keys(hash)
  Hash.new.tap do |new_hash|
    hash.each do |key, value|
      new_hash[key.to_s] = value
    end
  end
end