Sha256: 1745888945ce9ff9850f2ef88ccbc0a951a098c1adb66aab9d4a06d3a60e34c8

Contents?: true

Size: 255 Bytes

Versions: 7

Compression:

Stored size: 255 Bytes

Contents

module WorkflowKit
  class BrickB < WorkflowKit::Brick
    def description
      "This is the test workflow brick B."
    end
    def execute( params = {} )
      Message.create( text: "Brick B has been executed." )
      return params
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
workflow_kit-0.0.8 test_app/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.7 test_app/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.6.alpha test_app/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.4.alpha test_app/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.3.alpha test/dummy/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.2.alpha test/dummy/app/models/workflow_kit/brick_b.rb
workflow_kit-0.0.1.apha test/dummy/app/models/workflow_kit/brick_b.rb