Sha256: 59e232365f58cbd1f74c551dcd490bf01c9cbc6c07e679ba76a394e1ae73c5ad

Contents?: true

Size: 937 Bytes

Versions: 6

Compression:

Stored size: 937 Bytes

Contents

require 'squib'

Squib::Deck.new(cards: 2) do
  background color: :white

  # Outputs a hash of arrays with the header names as keys
  data = csv file: 'sample.csv'
  text str: data['Type'], x: 250, y: 55, font: 'Arial 18'
  text str: data['Level'], x: 65, y: 65, font: 'Arial 24'

  save format: :png, prefix: 'sample_csv_'

  # You can also specify the sheet, starting at 0
  data = xlsx file: 'sample.xlsx', sheet: 2
end

# CSV is also a Squib-module-level function, so this also works:
data      = Squib.csv file: 'quantity_explosion.csv' # 2 rows...
num_cards = data['Name'].size                        #          ...but 4 cards!

Squib::Deck.new(cards: num_cards) do
  background color: :white
  rect # card border
  text str: data['Name'], font: 'Arial 18'
  save_sheet prefix: 'sample_csv_qty_', columns: 4
end

# Additionally, CSV supports inline data specifically
data = Squib.csv data: <<-EOCSV
Name,Cost
Knight,3
Orc,1
EOCSV

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
squib-0.19.0 samples/data/_csv.rb
squib-0.19.0b samples/data/_csv.rb
squib-0.19.0a samples/data/_csv.rb
squib-0.15.2 samples/data/_csv.rb
squib-0.15.1 samples/data/_csv.rb
squib-0.14.2 samples/data/_csv.rb