Sha256: f2e2b5551c38c2bf946c45ce526cbabd1425f2c1e2ae36e0408fe9b2304b7e98

Contents?: true

Size: 289 Bytes

Versions: 3

Compression:

Stored size: 289 Bytes

Contents

module WerckerAPI
  class Application
    class BuildCollection
      include Enumerable
      def initialize(collection = [])
        self.collection = collection
      end

      def each
        collection.each
      end

      private
      attr_accessor :collection
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wercker_api-0.1.6 lib/wercker_api/application/build_collection.rb
wercker_api-0.1.2.pre lib/wercker_api/application/build_collection.rb
wercker_api-0.1.1.pre6 lib/wercker_api/application/build_collection.rb