git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca203bf
)
fixed rendering call in spec_helper
author
Matthias Kramm
<kramm@quiss.org>
Mon, 25 Jan 2010 21:23:42 +0000
(13:23 -0800)
committer
Matthias Kramm
<kramm@quiss.org>
Mon, 25 Jan 2010 21:23:42 +0000
(13:23 -0800)
spec/spec_helper.rb
patch
|
blob
|
history
diff --git
a/spec/spec_helper.rb
b/spec/spec_helper.rb
index
99f5987
..
86e098b
100644
(file)
--- a/
spec/spec_helper.rb
+++ b/
spec/spec_helper.rb
@@
-125,7
+125,7
@@
class DocFile
convert()
@pngname = @filename.gsub(/.pdf$/i,"")+".png"
begin
- output = `swfrender --legacy #{@swfname} -o #{@pngname} 2>&1`
+ output = `swfrender #{@swfname} -o #{@pngname} 2>&1`
raise ConversionFailed.new(output,@pngname) unless File.exists?(@pngname)
@img = Magick::Image.read(@pngname).first
ensure