You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the .../1.8/gems/ruby-graphviz-0.9.6/lib/graphviz.rb method escape_path_containing_blanks
line 714
def escape_path_containing_blanks(path)
path.gsub!(File::ALT_SEPARATOR, File::SEPARATOR)
throws an Exception on my machine since File::ALT_SEPARATOR
A simple workaround is:
def escape_path_containing_blanks(path)
path.gsub!(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
I'm using ubuntu 9.10, JRuby 1.4.0
The text was updated successfully, but these errors were encountered:
In the .../1.8/gems/ruby-graphviz-0.9.6/lib/graphviz.rb method escape_path_containing_blanks
line 714
def escape_path_containing_blanks(path)
path.gsub!(File::ALT_SEPARATOR, File::SEPARATOR)
throws an Exception on my machine since File::ALT_SEPARATOR
A simple workaround is:
def escape_path_containing_blanks(path)
path.gsub!(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
I'm using ubuntu 9.10, JRuby 1.4.0
The text was updated successfully, but these errors were encountered: