aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/enumerator/fixtures/common.rb
blob: e332e3195bf98fadc108b8bd8e0bb4a06d675e73 (plain)
1
2
3
4
5
6
7
8
9
module EnumeratorSpecs
  class Feed
    def each
      ScratchPad << yield
      ScratchPad << yield
      ScratchPad << yield
    end
  end
end