module Linearly::Mixins::FlowBuilder

Public Instance Methods

>>(other) click to toggle source

@!method self.>>(other) Convenience method to create a {Flow} from linked Steps

@param other [Step] next step in the {Flow}

@return [Flow] @api public @example

flow =
  Users::Find
  .>> Users::Update
  .>> Users::Save
# File lib/linearly/mixins/flow_builder.rb, line 16
def >>(other)
  Flow.new(self, other)
end