summaryrefslogtreecommitdiff
path: root/devel/ruby-stream
AgeCommit message (Collapse)AuthorFilesLines
2009-07-12Make sure that a .orig file is not installed.minskim1-1/+5
Noted by Hasso Tepper.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-5/+1
2009-06-12Add a comment to last patch.taca2-3/+5
2009-06-12* Add LICENSE.taca3-2/+17
* Fix homepage in gemspec file to pass newer Rubygems. No PKGREVISION bump since there is no change with built package.
2008-04-04Install as a gem using the pkgsrc rubygem.mk framework instead ofjlam4-46/+24
directly into site_ruby.
2006-05-04Import ruby-stream.minskim5-0/+63
Module Stream defines an interface for external iterators. A stream can be seen as an iterator on a sequence of objects x1, ..., xn. The state of the stream is uniquely determined by the following methods: at_beginning?, at_end?, current, and peek. State changes are done with the following operations: set_to_begin, set_to_end, forward, and backward.