datamapper/dm-core

View on GitHub
lib/dm-core/core_ext/kernel.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Kernel

  # Returns the object's singleton class.
  #
  # @return [Class]
  #
  # @api private
  def singleton_class
    class << self
      self
    end
  end unless respond_to?(:singleton_class)  # exists in 1.9.2

private

  # Delegates to DataMapper.repository()
  #
  # @api public
  def repository(*args, &block)
    DataMapper.repository(*args, &block)
  end

end # module Kernel