summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/fixtures/singleton_methods.rb
blob: 32ea0adf8908b0f572760fe1dd8bbb5e7794812c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module SingletonMethodsSpecs
  module Prepended
    def mspec_test_kernel_singleton_methods
    end
    public :mspec_test_kernel_singleton_methods
  end

  ::Module.prepend Prepended

  module SelfExtending
    extend self
  end
end