From b7e9e5459a054fa2f8c509dad3648352eae14c1d Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Tue, 22 Jul 2014 17:40:31 -0400 Subject: [PATCH] Removing print statement --- lib/squib/graphics/image.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/squib/graphics/image.rb b/lib/squib/graphics/image.rb index 7f6b4a4..09bc7ec 100644 --- a/lib/squib/graphics/image.rb +++ b/lib/squib/graphics/image.rb @@ -12,7 +12,6 @@ module Squib svg = RSVG::Handle.new_from_file(file) width = svg.width if width == :native height = svg.height if height == :native - puts "Width and height #{width} #{height}, svg was #{svg.width} #{svg.height}" tmp = Cairo::ImageSurface.new(width, height) tmp_cc = Cairo::Context.new(tmp) tmp_cc.scale(width.to_f / svg.width.to_f, height.to_f / svg.height.to_f) @@ -22,4 +21,4 @@ module Squib end end -end \ No newline at end of file +end