Skip to content

Instantly share code, notes, and snippets.

@jumski
jumski / piglet.rb
Last active February 18, 2016 11:34
Alternative implementation of codequest-eu/codequest_pipes :-)
class Trough < Array
alias_method :|, :push
def call(context)
reduce(context) do |ctx, pig|
pig.new(ctx).call
ctx
end
end
end