module Kernel

taken from ActiveSupport - MIT licensed

Public Instance Methods

singleton_class() click to toggle source
# File lib/core_ext.rb, line 66
def singleton_class
  class << self
    self
  end
end