GraphvizR 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/lib/graphviz_r.rb +2 -2
- data/test/test_graphviz_r.rb +13 -0
- metadata +2 -2
data/History.txt
CHANGED
data/lib/graphviz_r.rb
CHANGED
@@ -141,7 +141,7 @@
|
|
141
141
|
# c -> f [lhead = cluster1];
|
142
142
|
#
|
143
143
|
class GraphvizR
|
144
|
-
VERSION = '0.5.
|
144
|
+
VERSION = '0.5.1'
|
145
145
|
INDENT_UNIT = ' '
|
146
146
|
|
147
147
|
attr_reader :statements, :graph_type
|
@@ -369,7 +369,7 @@ end
|
|
369
369
|
|
370
370
|
class String #:nodoc:
|
371
371
|
def to_dot
|
372
|
-
inspect
|
372
|
+
inspect.gsub('\e', '\l')
|
373
373
|
end
|
374
374
|
end
|
375
375
|
|
data/test/test_graphviz_r.rb
CHANGED
@@ -364,6 +364,19 @@ digraph sample {
|
|
364
364
|
alpha -> gamma [label = "label1"];
|
365
365
|
beta -> delta [label = "label2"];
|
366
366
|
delta -> size;
|
367
|
+
}
|
368
|
+
end_of_string
|
369
|
+
end
|
370
|
+
|
371
|
+
def test_left_aligned_text_in_record_nodes
|
372
|
+
gvr = GraphvizR.new 'sample'
|
373
|
+
gvr.node [:shape => 'record']
|
374
|
+
gvr.node1 [:label => "Object|left\eright\rcentered\n"]
|
375
|
+
|
376
|
+
assert_equal <<-'end_of_string', gvr.data(:dot)
|
377
|
+
digraph sample {
|
378
|
+
node [shape = "record"];
|
379
|
+
node1 [label = "Object|left\lright\rcentered\n"];
|
367
380
|
}
|
368
381
|
end_of_string
|
369
382
|
end
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: GraphvizR
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.5.
|
7
|
-
date: 2007-03-
|
6
|
+
version: 0.5.1
|
7
|
+
date: 2007-03-19 00:00:00 +09:00
|
8
8
|
summary: Graphviz wrapper for Ruby and Rails
|
9
9
|
require_paths:
|
10
10
|
- lib
|