dryrb/dry-pipeline

View on GitHub
lib/dry/pipeline/mixin.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dry
  class Pipeline
    module Mixin
      def >>(other)
        ::Dry::Pipeline::Composite.new(self, other)
      end
    end
  end
end