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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a0068abd37947c716b1f8d20e9ee3af4e9630c1
4
- data.tar.gz: 4c9ff1dde33f5e1c53cc2f950a5b73f017305562
3
+ metadata.gz: fae8986161bdb24824b5897e0f09b4b62e0d18ae
4
+ data.tar.gz: 592ce7d666d1c5f7e9368716092b7158f22e1c91
5
5
  SHA512:
6
- metadata.gz: c2c94a944a3edd401d73940b7564d6cbeeec4b6b0b6cdf8d8f6eaefbf924d8a8a0533030a44141da31a1c87c16abe7abb50d786fd93453e4a54647d8e70c08fd
7
- data.tar.gz: fda7e80839f0d1e021a09f9a5f4c303325178f3ef3f50faa8e42b1c3fea9babfd2d02437aac07f5370db8a52e1edee81fcf817d5c6c15922acfca31c331f3c6a
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.
@@ -1,3 +1,3 @@
1
1
  module Mementus
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '0.8.1'.freeze
3
3
  end
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.0
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-29 00:00:00.000000000 Z
11
+ date: 2018-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler