summaryrefslogtreecommitdiff
path: root/spec/ruby/core/refinement/fixtures/classes.rb
blob: 94324db47cce11a08059a7e42d1c6f2c78524587 (plain)
1
2
3
4
5
6
7
8
9
10
module RefinementSpec

  module ModuleWithAncestors
    include Module.new do
      def indent(level)
        " " * level + self
      end
    end
  end
end