mementus 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mementus/pipeline/step.rb +4 -4
- data/lib/mementus/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fae8986161bdb24824b5897e0f09b4b62e0d18ae
|
4
|
+
data.tar.gz: 592ce7d666d1c5f7e9368716092b7158f22e1c91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5b5f9d0c563bc3173e45c6a88ba8b88769c8c8f504e78b28fe9823d4fc42207045b9cc169c66173bead90380e9fe3ac47ec17e9930911cb90eb8f9a3b1c0e8c
|
7
|
+
data.tar.gz: 669cc8a2bf3dd25f0ecbfa6528c0ca806f4492f96081550b65243aed13b32133c2b266c48e12080f4b4190d36f8cfd1e18141ac937fb08b95565bfbc027eb39b
|
@@ -63,7 +63,7 @@ module Mementus
|
|
63
63
|
result.concat(node.outgoing(match))
|
64
64
|
end
|
65
65
|
|
66
|
-
Step.new(outgoing_nodes)
|
66
|
+
Step.new(outgoing_nodes, Pipe.new(graph), graph)
|
67
67
|
end
|
68
68
|
|
69
69
|
# Traverse to the incoming nodes pointing to the source elements.
|
@@ -72,7 +72,7 @@ module Mementus
|
|
72
72
|
result.concat(node.incoming(match))
|
73
73
|
end
|
74
74
|
|
75
|
-
Step.new(incoming_nodes)
|
75
|
+
Step.new(incoming_nodes, Pipe.new(graph), graph)
|
76
76
|
end
|
77
77
|
|
78
78
|
# Traverse to the outgoing edges from the source elements.
|
@@ -81,7 +81,7 @@ module Mementus
|
|
81
81
|
result.concat(graph.outgoing_edges(node.id, match))
|
82
82
|
end
|
83
83
|
|
84
|
-
Step.new(outgoing_edges)
|
84
|
+
Step.new(outgoing_edges, Pipe.new(graph), graph)
|
85
85
|
end
|
86
86
|
|
87
87
|
# Traverse to the incoming edges pointing to the source elements.
|
@@ -90,7 +90,7 @@ module Mementus
|
|
90
90
|
result.concat(graph.incoming_edges(node.id, match))
|
91
91
|
end
|
92
92
|
|
93
|
-
Step.new(incoming_edges)
|
93
|
+
Step.new(incoming_edges, Pipe.new(graph), graph)
|
94
94
|
end
|
95
95
|
|
96
96
|
# Returns the first value in the sequence.
|
data/lib/mementus/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mementus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- maetl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|