Browse Source

Removing the puts from the samples

dev
Andy Meneely 12 years ago
parent
commit
37794bdb56
  1. 2
      samples/basic.rb
  2. 2
      samples/excel.rb
  3. 2
      samples/load_images.rb
  4. 1
      samples/ranges.rb
  5. 2
      samples/save_pdf.rb
  6. 4
      samples/text_options.rb
  7. 2
      samples/units.rb

2
samples/basic.rb

@ -18,5 +18,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
save prefix: 'basic_', format: :png
end
puts "Done!"

2
samples/excel.rb

@ -17,5 +17,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
save format: :png, prefix: 'sample_excel_'
end
puts "Done!"

2
samples/load_images.rb

@ -12,5 +12,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 1) do
save prefix: 'load_images_', format: :png
end
puts "Done!"

1
samples/ranges.rb

@ -45,4 +45,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
save prefix: 'ranges_', format: :png
end
puts "Done!"

2
samples/save_pdf.rb

@ -12,5 +12,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 16) do
#Note that our PNGs still are not trimmed even though the pdf ones are
save_png range: 1, prefix: "save_pdf_"
end
puts "Done!"

4
samples/text_options.rb

@ -52,7 +52,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
save prefix: 'text_', format: :png
end
puts "Done!"

2
samples/units.rb

@ -10,5 +10,3 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
save prefix: 'units_', format: :png
end
puts "Done!"
Loading…
Cancel
Save