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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 387fd5eb3109808727f67fd41b5cbd338a750df7
4
- data.tar.gz: 733c48e04171a6dd5c9d79d7a5fccf800f49ad63
3
+ metadata.gz: 8d91b2ffd15774ec3bcc42c7dc377ae7c6a8e8ce
4
+ data.tar.gz: 39c29d45d1fa3e372e157194983ed8829e317e6b
5
5
  SHA512:
6
- metadata.gz: bdef2f4177c2b8bc65c04ab58463fb492216c752fcd93bf3a8e99a479e89dced4851a1eea77512118a2399541d8a9d3005b48c29daf00c761648a55441536b0d
7
- data.tar.gz: 733df7c17957d590e6ba4ed11010c4481df3a93553929878790502ec90d31c4d253dd78363786571377add894c9fa80c86a06afeabdd30bc3b4b194d8d2f8cd3
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'
@@ -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
- # in_node - The Node to which the edge points.
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
@@ -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
- "#<#{ self.class.inspect } {#{ to_s }}>"
272
+ to_a.inspect
273
273
  end
274
274
  end # DSL
275
275
  end # Pipeline
@@ -1,4 +1,4 @@
1
1
  module Turbine
2
2
  # The current version of the Turbine library.
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
@@ -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.2'
12
- s.date = '2013-09-19'
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.2
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-19 00:00:00.000000000 Z
12
+ date: 2013-09-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake