summaryrefslogtreecommitdiff
path: root/lib/hashie/hash.rb
blob: d13a58ba140620e6a12013a1a782a2c758f4e8c3 (plain)
1
2
3
4
5
6
7
8
module Hashie
  # A Hashie Hash is simply a Hash that has convenience
  # functions baked in such as stringify_keys that may
  # not be available in all libraries.
  class Hash < Hash
    include Hashie::HashExtensions
  end
end