aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/basicobject/fixtures/singleton_method.rb
blob: 0e00e035fa5b3264f19cc2c31e8a452073523e81 (plain)
1
2
3
4
5
6
7
8
9
10
module BasicObjectSpecs
  class SingletonMethod
    def self.singleton_method_added name
      ScratchPad.record [:singleton_method_added, name]
    end

    def self.singleton_method_to_alias
    end
  end
end