Top Level Namespace

Defined Under Namespace

Modules: Enumerable, HashMapper Classes: Symbol

Instance Method Summary collapse

Instance Method Details

#require_active_supportObject



4
5
6
7
8
9
10
11
12
# File 'lib/hash_mapper.rb', line 4

def require_active_support
  require 'active_support/core_ext/array/extract_options'
  require 'active_support/core_ext/hash/indifferent_access'
  require 'active_support/core_ext/duplicable'
  Array.send(:include, ActiveSupport::CoreExtensions::Array::ExtractOptions)
  Hash.send(:include, ActiveSupport::CoreExtensions::Hash::IndifferentAccess)
  require 'active_support/core_ext/class/inheritable_attributes'

end