turbine-graph 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/turbine/edge.rb +1 -1
- data/lib/turbine/pipeline/dsl.rb +2 -2
- data/lib/turbine/version.rb +1 -1
- data/turbine.gemspec +2 -2
- 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: 8d91b2ffd15774ec3bcc42c7dc377ae7c6a8e8ce
|
4
|
+
data.tar.gz: 39c29d45d1fa3e372e157194983ed8829e317e6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e4da1ef792a64fd385ebb9c3039bbb1e2ed83f23b24136df13757cac603309ab9293ba5399d40a0b70e74d9042f85e20313424186606ddd3d2517cc1281d81d
|
7
|
+
data.tar.gz: 52f2406bbf99e66c9ce08c876d4aa193a29d3a4eb6e343f4b10cb1bdc4f3c37969562c4ac0d2597cb997d5024687562575fd92a151b022996b47e1515c4aa26d
|
data/Rakefile
CHANGED
@@ -29,7 +29,7 @@ task :release => :build do
|
|
29
29
|
sh "git push origin v#{Turbine::VERSION}"
|
30
30
|
|
31
31
|
puts "Push to Rubygems.org with"
|
32
|
-
puts " gem push pkg/turbine-#{Turbine::VERSION}.gem"
|
32
|
+
puts " gem push pkg/turbine-graph-#{Turbine::VERSION}.gem"
|
33
33
|
end
|
34
34
|
|
35
35
|
desc 'Builds the gem'
|
data/lib/turbine/edge.rb
CHANGED
@@ -48,7 +48,7 @@ module Turbine
|
|
48
48
|
# Public: Creates a new Edge.
|
49
49
|
#
|
50
50
|
# from_node - The Node from which the edge originates.
|
51
|
-
#
|
51
|
+
# to_node - The Node to which the edge points.
|
52
52
|
# label - An optional label for describing the nature of the
|
53
53
|
# relationship between the two nodes.
|
54
54
|
# properties - Optional key/value properties to be associated with the
|
data/lib/turbine/pipeline/dsl.rb
CHANGED
@@ -265,11 +265,11 @@ module Turbine
|
|
265
265
|
DSL.new(@source.append(downstream))
|
266
266
|
end
|
267
267
|
|
268
|
-
# Public: A human-readable version of the DSL.
|
268
|
+
# Public: A human-readable version of the DSL. Shows the final result.
|
269
269
|
#
|
270
270
|
# Return a String.
|
271
271
|
def inspect
|
272
|
-
|
272
|
+
to_a.inspect
|
273
273
|
end
|
274
274
|
end # DSL
|
275
275
|
end # Pipeline
|
data/lib/turbine/version.rb
CHANGED
data/turbine.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
# rake task. It it completely safe to edit them, but using the rake task
|
9
9
|
# is easier.
|
10
10
|
s.name = 'turbine-graph'
|
11
|
-
s.version = '0.1.
|
12
|
-
s.date = '2013-09-
|
11
|
+
s.version = '0.1.3'
|
12
|
+
s.date = '2013-09-27'
|
13
13
|
s.rubyforge_project = 'turbine-graph'
|
14
14
|
|
15
15
|
# You may safely edit the section below.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbine-graph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anthony Williams
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-09-
|
12
|
+
date: 2013-09-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|