trailblazer-activity 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/trailblazer/activity/version.rb +1 -1
- data/lib/trailblazer/activity.rb +3 -2
- data/trailblazer-activity.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88fdbd19ae2eb00bf9f2ad4d700cacfbb26cde7b
|
|
4
|
+
data.tar.gz: 8171eb89bc8c6d9350aeb5d1e2c8609d28987c43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d04ecbd89f38f8ffe7dca35a18c122e4139530640014b52a16150c560e2d4cd1bd012a93d97b9ec0a748be90f4e3f5fa2ab5b464b4a4014d28ad834ce021c151
|
|
7
|
+
data.tar.gz: 5344aef9ca3900e5482a5cd20d9e01932a2865123d2de37a9a9854b414c1634e8df931119ee0929b0fe1ce8bb3c7073324111532b073a5fb575d47c228634666
|
data/CHANGES.md
CHANGED
data/lib/trailblazer/activity.rb
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
require "trailblazer/activity/graph"
|
|
2
|
-
require "trailblazer/activity/nested"
|
|
3
1
|
require "trailblazer/activity/version"
|
|
4
2
|
|
|
5
3
|
require "trailblazer/circuit"
|
|
@@ -14,6 +12,9 @@ require "trailblazer/container_chain"
|
|
|
14
12
|
module Trailblazer
|
|
15
13
|
class Activity
|
|
16
14
|
|
|
15
|
+
require "trailblazer/activity/graph"
|
|
16
|
+
require "trailblazer/activity/nested"
|
|
17
|
+
|
|
17
18
|
# Only way to build an Activity.
|
|
18
19
|
def self.from_wirings(wirings, &block)
|
|
19
20
|
start_evt = Circuit::Start.new(:default)
|
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.summary = %q{The main element for Trailblazer's BPMN-compliant workflows.}
|
|
12
12
|
spec.description = %q{The main element for Trailblazer's BPMN-compliant workflows. Used in Trailblazer's Operation to implement the Railway.}
|
|
13
13
|
spec.homepage = "http://trailblazer.to/gems/workflow"
|
|
14
|
+
spec.licenses = ["MIT"]
|
|
14
15
|
|
|
15
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
16
17
|
f.match(%r{^(test|spec|features)/})
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trailblazer-activity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sutterer
|
|
@@ -95,7 +95,8 @@ files:
|
|
|
95
95
|
- lib/trailblazer/option.rb
|
|
96
96
|
- trailblazer-activity.gemspec
|
|
97
97
|
homepage: http://trailblazer.to/gems/workflow
|
|
98
|
-
licenses:
|
|
98
|
+
licenses:
|
|
99
|
+
- MIT
|
|
99
100
|
metadata: {}
|
|
100
101
|
post_install_message:
|
|
101
102
|
rdoc_options: []
|