module Pipelines::Pipeable

Public Instance Methods

|(other) click to toggle source
# File lib/readingme/pipelines.rb, line 4
def |(other)
  Pipelines::Pipeline.new.tap do |pipeline|
    pipeline | self
    pipeline | other
  end
end