2013-11-17 16:28:19 +00:00
|
|
|
@session.configure do |c|
|
2013-11-22 13:17:13 +00:00
|
|
|
# manipulate the data after reading from the spreadsheet
|
|
|
|
# c.post_read_data = proc { |data|
|
|
|
|
# data[:replacements]['Superpower Text'] << '!!'
|
|
|
|
# }
|
2013-11-17 16:28:19 +00:00
|
|
|
|
2014-03-05 11:34:14 +00:00
|
|
|
# only sheets with this in the title will be read for card data
|
|
|
|
# c.card_sheet_identifier = "Card Data"
|
|
|
|
|
|
|
|
# prepend this PDF to the outputted PDF (useful for game rules)
|
|
|
|
# c.prepend_pdf = "rules.pdf"
|
|
|
|
|
2014-06-24 01:45:57 +00:00
|
|
|
# the cards are landscape, so rotate them counterclockwise
|
|
|
|
# after rendering in Inkscape
|
|
|
|
# c.orientation = :landscape
|
|
|
|
|
2013-11-22 13:17:13 +00:00
|
|
|
c.data_source = "data.ods"
|
2013-11-17 16:28:19 +00:00
|
|
|
end
|
|
|
|
|