piperator
piperator copied to clipboard
Composable pipelines for Enumerators.
Hey, great gem! But, what do you think, that use `|` method instead `.`, for example like this. ```rb Piperator | ->(values) { values.lazy.map { |i| i * 3 }...
Using Docile https://github.com/ms-ati/docile instead of cooking our own DSL building logic would have some benefits: - Maybe more standard DSL as other libraries also use it.. e.g. at lest `pena`...
This enables the following: ```ruby require 'piperator' require 'pathname' # Open a set of files as if they were one big file, like the "cat" command does # works anywhere...