Sha256: 82d9127bfa03710b80084bcd88d0cbeb8bae2f20a87adedb94c0445a13685646

Contents?: true

Size: 564 Bytes

Versions: 1

Compression:

Stored size: 564 Bytes

Contents

#!/usr/bin/env ruby
require 'squib'

Squib::Deck.new(config: 'custom-config.yml') do
  # Custom color defined in our config
  background color: :foo 

  # Hints are turned on in the config file
  text str: "The Title", x: 0, y: 78, width: 825,
       font: 'Arial 72', align: :center

  # Progress bars are shown for these commands
  # And images are taken from config-imgdir
  png file: 'shiny-purse2.png', x: 620, y: 75
  svg file: 'spanner2.svg', x: 620, y: 218
  save_png prefix: 'custom-config_'
  save_pdf file: "custom-config-out.pdf"

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
squib-0.0.4 samples/custom_config.rb