aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/core_ext/hash.rb
blob: e899d3e1e2a9af4963b90029618494e9f1abcb68 (plain) (blame)
1
2
3
4
5
6
7
require File.dirname(__FILE__) + '/hash/keys'
require File.dirname(__FILE__) + '/hash/indifferent_access'

class Hash #:nodoc:
  include ActiveSupport::CoreExtensions::Hash::Keys
  include ActiveSupport::CoreExtensions::Hash::IndifferentAccess
end