Browse Source

Removing the puts from the samples

dev
Andy Meneely 12 years ago
parent
commit
37794bdb56
  1. 4
      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

4
samples/basic.rb

@ -17,6 +17,4 @@ Squib::Deck.new(width: 825, height: 1125, cards: 3) do
svg range: 1..2, file: 'spanner.svg', x: 620, y: 218 svg range: 1..2, file: 'spanner.svg', x: 620, y: 218
save prefix: 'basic_', format: :png save prefix: 'basic_', format: :png
end 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_' save format: :png, prefix: 'sample_excel_'
end 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 save prefix: 'load_images_', format: :png
end 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 save prefix: 'ranges_', format: :png
end 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 #Note that our PNGs still are not trimmed even though the pdf ones are
save_png range: 1, prefix: "save_pdf_" save_png range: 1, prefix: "save_pdf_"
end 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 save prefix: 'text_', format: :png
end 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 save prefix: 'units_', format: :png
end end
puts "Done!"
Loading…
Cancel
Save