trailblazer-activity 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f76309405b46e6388f13ecd090c1ad50a527fbc
4
- data.tar.gz: 9c0baac268666b6c6136d78b967f7a8e436ee245
3
+ metadata.gz: 88fdbd19ae2eb00bf9f2ad4d700cacfbb26cde7b
4
+ data.tar.gz: 8171eb89bc8c6d9350aeb5d1e2c8609d28987c43
5
5
  SHA512:
6
- metadata.gz: 4cc934487e044fc7a59273a03e20c77cbae3f7eda9d51d6016f0ca5dc30f83d36168aca43cbce19e0909f8b73c7a28f155f631cd9a325056e3cf678d3164c6ba
7
- data.tar.gz: ea8fb256973d8a6084d4c7a7a70e3b990cef945e1f53ee31cd87f90061e20628631b0fcc405e6ec65b5f925ec8fc92c8a9cd28f4325ee4042b2e5e9bafda5b8a
6
+ metadata.gz: d04ecbd89f38f8ffe7dca35a18c122e4139530640014b52a16150c560e2d4cd1bd012a93d97b9ec0a748be90f4e3f5fa2ab5b464b4a4014d28ad834ce021c151
7
+ data.tar.gz: 5344aef9ca3900e5482a5cd20d9e01932a2865123d2de37a9a9854b414c1634e8df931119ee0929b0fe1ce8bb3c7073324111532b073a5fb575d47c228634666
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.1.1
2
+
3
+ * Fix loading order.
4
+
1
5
  # 0.0.12
2
6
 
3
7
  * In `Activity::Before`, allow specifying what predecessing tasks to connect to the new_task via the
@@ -1,5 +1,5 @@
1
1
  module Trailblazer
2
2
  class Activity
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -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.0
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: []