summaryrefslogtreecommitdiff
path: root/lib/bitbucket/collection.rb
blob: 9cc8947417caa9375d41619c635d8f06e770ba5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Bitbucket
  class Collection < Enumerator
    def initialize(paginator)
      super() do |yielder|
        loop do
          paginator.next.each { |item| yielder << item }
        end
      end

      lazy
    end

    def method_missing(method, *args)
      return super unless self.respond_to?(method)

      self.send(method, *args) do |item|
        block_given? ? yield(item) : item
      end
    end
  end
end