module ActiveModel::Serializable::Utils

def _const_get(const)

def _const_get(const)
  begin
    method = RUBY_VERSION >= '2.0' ? :const_get : :qualified_const_get
    Object.send method, const
  rescue NameError
    const.safe_constantize
  end
end