lib/rabbit/parser/ext/aafigure.rb in rabbit-2.1.3 vs lib/rabbit/parser/ext/aafigure.rb in rabbit-2.1.4
- old
+ new
@@ -7,13 +7,15 @@
module_function
AVAILABLE_OPTIONS = ["linewidth", "foreground", "fill", "background",
"option"]
def make_image(path, prop, logger)
image_file = Tempfile.new("rabbit-image-aafigure")
- command = ["aafigure",
- "--type", "svg",
- "--encoding", "utf-8",
- "--output", image_file.path]
+ command = [
+ "aafigure",
+ "--type", "svg",
+ "--encoding", "utf-8",
+ "--output", image_file.path,
+ ]
aafigure_options = []
AVAILABLE_OPTIONS.each do |name|
command.concat(["--#{name}", prop[name]]) if prop.has_key?(name)
end
command << path