module Attr::Gather::Workflow

Main mixin for functionality. Adds the ability to turn a class into a workflow.

Public Class Methods

included(klass) click to toggle source

@!parse extend DSL @!parse include Callable @!parse extend Graphable::ClassMethods @!parse include Graphable::InstanceMethods @!parse include Concerns::Identifiable

# File lib/attr/gather/workflow.rb, line 21
def self.included(klass)
  klass.extend(DSL)
  klass.include(Callable)
  klass.include(Graphable)
  klass.include(Concerns::Identifiable)
end