rviz 0.0.9 → 0.0.10
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/lib/rviz/record.rb +2 -2
- data/lib/rviz/version.rb +1 -1
- metadata +2 -2
data/lib/rviz/record.rb
CHANGED
@@ -20,8 +20,8 @@ module Rviz
|
|
20
20
|
if create_anchor
|
21
21
|
anchor_id = @anchors.keys.size + 1
|
22
22
|
@anchors[row_name] = anchor_id
|
23
|
-
row_name.gsub!(/([\/\|\\\<\>])/, '-') # escape special characters
|
24
|
-
row_name = "<f#{anchor_id.to_s}>" + row_name
|
23
|
+
# row_name.gsub!(/([\/\|\\\<\>])/, '-') # escape special characters
|
24
|
+
row_name = "<f#{anchor_id.to_s}>" + row_name.gsub(/([\/\|\\\<\>])/, '-')
|
25
25
|
end
|
26
26
|
if port_pos
|
27
27
|
raise "unknown port_pos, should in l, r or n" unless %w[l r n].include? port_pos
|
data/lib/rviz/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rviz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|