squib 0.15.2 → 0.15.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +41 -41
- data/.travis.yml +17 -17
- data/CHANGELOG.md +400 -395
- data/CONTRIBUTING.md +40 -40
- data/Dockerfile +25 -25
- data/Gemfile +2 -2
- data/LICENSE.txt +22 -22
- data/README.md +145 -145
- data/RELEASE TODO.md +21 -21
- data/Rakefile +48 -48
- data/appveyor.yml +25 -25
- data/bin/squib +4 -4
- data/lib/squib.rb +32 -32
- data/lib/squib/api/background.rb +15 -15
- data/lib/squib/api/data.rb +137 -137
- data/lib/squib/api/groups.rb +54 -54
- data/lib/squib/api/image.rb +49 -49
- data/lib/squib/api/save.rb +83 -83
- data/lib/squib/api/settings.rb +21 -21
- data/lib/squib/api/shapes.rb +124 -124
- data/lib/squib/api/text.rb +25 -25
- data/lib/squib/api/text_embed.rb +71 -71
- data/lib/squib/api/units.rb +27 -27
- data/lib/squib/args/arg_loader.rb +126 -126
- data/lib/squib/args/box.rb +55 -55
- data/lib/squib/args/card_range.rb +32 -32
- data/lib/squib/args/color_validator.rb +12 -12
- data/lib/squib/args/coords.rb +35 -35
- data/lib/squib/args/csv_opts.rb +25 -25
- data/lib/squib/args/dir_validator.rb +16 -16
- data/lib/squib/args/draw.rb +92 -92
- data/lib/squib/args/embed_adjust.rb +25 -25
- data/lib/squib/args/embed_key.rb +17 -17
- data/lib/squib/args/hand_special.rb +37 -37
- data/lib/squib/args/import.rb +40 -40
- data/lib/squib/args/input_file.rb +37 -37
- data/lib/squib/args/paint.rb +44 -44
- data/lib/squib/args/paragraph.rb +116 -116
- data/lib/squib/args/save_batch.rb +63 -63
- data/lib/squib/args/scale_box.rb +53 -53
- data/lib/squib/args/sheet.rb +172 -172
- data/lib/squib/args/showcase_special.rb +41 -41
- data/lib/squib/args/sprue_file.rb +44 -44
- data/lib/squib/args/svg_special.rb +37 -37
- data/lib/squib/args/transform.rb +61 -61
- data/lib/squib/args/typographer.rb +119 -119
- data/lib/squib/args/unit_conversion.rb +29 -29
- data/lib/squib/builtin/layouts/economy.yml +85 -85
- data/lib/squib/builtin/layouts/fantasy.yml +101 -101
- data/lib/squib/builtin/layouts/hand.yml +62 -62
- data/lib/squib/builtin/layouts/party.yml +94 -94
- data/lib/squib/builtin/layouts/playing-card.yml +35 -35
- data/lib/squib/builtin/layouts/tuck_box.yml +46 -46
- data/lib/squib/builtin/projects/advanced/.gitignore +4 -4
- data/lib/squib/builtin/projects/advanced/ABOUT.md +19 -19
- data/lib/squib/builtin/projects/advanced/Gemfile +11 -11
- data/lib/squib/builtin/projects/advanced/Guardfile +21 -21
- data/lib/squib/builtin/projects/advanced/IDEAS.md +22 -22
- data/lib/squib/builtin/projects/advanced/PLAYTESTING.md +26 -26
- data/lib/squib/builtin/projects/advanced/Rakefile +27 -27
- data/lib/squib/builtin/projects/advanced/config.yml +49 -49
- data/lib/squib/builtin/projects/advanced/docs/PNP NOTES.md +3 -3
- data/lib/squib/builtin/projects/advanced/docs/RULES.md +21 -21
- data/lib/squib/builtin/projects/advanced/img/example.svg +60 -60
- data/lib/squib/builtin/projects/advanced/layouts/deck.yml +27 -27
- data/lib/squib/builtin/projects/advanced/src/deck.rb +34 -34
- data/lib/squib/builtin/projects/advanced/src/version.rb +3 -3
- data/lib/squib/builtin/projects/basic/.gitignore +4 -4
- data/lib/squib/builtin/projects/basic/ABOUT.md +19 -19
- data/lib/squib/builtin/projects/basic/Gemfile +3 -3
- data/lib/squib/builtin/projects/basic/IDEAS.md +22 -22
- data/lib/squib/builtin/projects/basic/PLAYTESTING.md +26 -26
- data/lib/squib/builtin/projects/basic/PNP NOTES.md +3 -3
- data/lib/squib/builtin/projects/basic/RULES.md +21 -21
- data/lib/squib/builtin/projects/basic/Rakefile +7 -7
- data/lib/squib/builtin/projects/basic/config.yml +49 -49
- data/lib/squib/builtin/projects/basic/deck.rb +6 -6
- data/lib/squib/builtin/sprues/a4_euro_card.yml +42 -42
- data/lib/squib/builtin/sprues/a4_poker_card_8up.yml +40 -40
- data/lib/squib/builtin/sprues/a4_poker_card_9up.yml +42 -42
- data/lib/squib/builtin/sprues/a4_usa_card.yml +42 -42
- data/lib/squib/builtin/sprues/drivethrucards_1up.yml +10 -10
- data/lib/squib/builtin/sprues/letter_poker_card_9up.yml +25 -25
- data/lib/squib/builtin/sprues/letter_poker_foldable_8up.yml +52 -52
- data/lib/squib/builtin/sprues/printplaygames_18up.yml +68 -68
- data/lib/squib/card.rb +75 -75
- data/lib/squib/commands/cli.rb +39 -39
- data/lib/squib/commands/data/template_option.rb +109 -109
- data/lib/squib/commands/make_sprue.rb +277 -277
- data/lib/squib/commands/new.rb +77 -77
- data/lib/squib/conf.rb +139 -139
- data/lib/squib/constants.rb +17 -17
- data/lib/squib/deck.rb +116 -116
- data/lib/squib/graphics/background.rb +14 -14
- data/lib/squib/graphics/cairo_context_wrapper.rb +113 -113
- data/lib/squib/graphics/embedding_utils.rb +28 -28
- data/lib/squib/graphics/gradient_regex.rb +47 -47
- data/lib/squib/graphics/hand.rb +42 -42
- data/lib/squib/graphics/image.rb +123 -123
- data/lib/squib/graphics/save_doc.rb +61 -61
- data/lib/squib/graphics/save_images.rb +52 -52
- data/lib/squib/graphics/save_pdf.rb +90 -90
- data/lib/squib/graphics/save_sprue.rb +219 -219
- data/lib/squib/graphics/shapes.rb +143 -143
- data/lib/squib/graphics/showcase.rb +85 -85
- data/lib/squib/graphics/text.rb +174 -174
- data/lib/squib/import/data_frame.rb +108 -108
- data/lib/squib/layout_parser.rb +138 -138
- data/lib/squib/progress.rb +38 -38
- data/lib/squib/sample_helpers.rb +34 -34
- data/lib/squib/sprues/crop_line.rb +28 -28
- data/lib/squib/sprues/crop_line_dash.rb +35 -35
- data/lib/squib/sprues/invalid_sprue_definition.rb +9 -9
- data/lib/squib/sprues/sprue.rb +206 -206
- data/lib/squib/sprues/sprue_schema.rb +50 -50
- data/lib/squib/version.rb +10 -10
- data/samples/autoscale_font/_autoscale_font.rb +29 -29
- data/samples/backend/_backend.rb +26 -26
- data/samples/basic.rb +19 -19
- data/samples/build_groups/build_groups.rb +36 -36
- data/samples/colors/_colors.rb +44 -44
- data/samples/colors/_gradients.rb +34 -34
- data/samples/colors/_switch_color.rb +33 -33
- data/samples/config/config_text_markup.rb +20 -20
- data/samples/config/custom_config.rb +18 -18
- data/samples/data/_csv.rb +33 -33
- data/samples/data/_excel.rb +55 -55
- data/samples/data/_yaml.rb +12 -12
- data/samples/hello_world.rb +6 -6
- data/samples/images/_cairo_access.rb +39 -39
- data/samples/images/_images.rb +104 -104
- data/samples/images/_more_load_images.rb +102 -102
- data/samples/intro/01_hello.rb +8 -8
- data/samples/intro/02_options.rb +14 -14
- data/samples/intro/03_layout.rb +11 -11
- data/samples/intro/04_arrays.rb +15 -15
- data/samples/intro/05_excel.rb +14 -14
- data/samples/layouts/builtin_layouts.rb +97 -97
- data/samples/layouts/layouts.rb +71 -71
- data/samples/project/src/characters.rb +8 -8
- data/samples/project/src/skills.rb +7 -7
- data/samples/proofs/_tgc_proofs.rb +16 -16
- data/samples/ranges/_ranges.rb +64 -64
- data/samples/saves/_hand.rb +23 -23
- data/samples/saves/_portrait_landscape.rb +23 -23
- data/samples/saves/_save_filenames.rb +24 -24
- data/samples/saves/_save_pdf.rb +29 -29
- data/samples/saves/_saves.rb +51 -51
- data/samples/saves/_showcase.rb +25 -25
- data/samples/shapes/_draw_shapes.rb +60 -60
- data/samples/shapes/_proofs.rb +22 -22
- data/samples/sprues/_advanced_sprues.rb +25 -25
- data/samples/sprues/_builtin_sprues.rb +21 -21
- data/samples/sprues/_fold_sheet.rb +27 -27
- data/samples/sprues/_hex_tiles.rb +15 -15
- data/samples/sprues/_mints.rb +11 -11
- data/samples/sprues/_sprue_example.rb +11 -11
- data/samples/text/_embed_text.rb +128 -128
- data/samples/text/_text.rb +47 -47
- data/samples/text/_text_options.rb +102 -102
- data/samples/text/bug134.rb +14 -14
- data/samples/units/_units.rb +32 -32
- data/squib.gemspec +52 -52
- metadata +62 -63
@@ -1,34 +1,34 @@
|
|
1
|
-
require 'squib'
|
2
|
-
require_relative 'version'
|
3
|
-
|
4
|
-
# Note: run this code by running "rake" at the command line
|
5
|
-
# To see full list of options, run "rake -T"
|
6
|
-
|
7
|
-
data = Squib.xlsx file: 'data/game.xlsx', sheet: 0
|
8
|
-
|
9
|
-
Squib::Deck.new(cards: data.nrows) do
|
10
|
-
background color: :white
|
11
|
-
use_layout file: 'layouts/deck.yml'
|
12
|
-
|
13
|
-
text str: data.name, layout: :name
|
14
|
-
|
15
|
-
text str: data.atk.map { |s| "#{s} ATK" }, layout: :ATK
|
16
|
-
text str: data.def.map { |s| "#{s} DEF" }, layout: :DEF
|
17
|
-
|
18
|
-
svg file: 'example.svg'
|
19
|
-
|
20
|
-
text str: MySquibGame::VERSION, layout: :version
|
21
|
-
|
22
|
-
build(:proofs) do
|
23
|
-
safe_zone
|
24
|
-
cut_zone
|
25
|
-
end
|
26
|
-
|
27
|
-
save format: :png
|
28
|
-
|
29
|
-
build(:pnp) do
|
30
|
-
save_sheet prefix: 'pnp_sheet_',
|
31
|
-
trim: '0.125in',
|
32
|
-
rows: 3, columns: 3
|
33
|
-
end
|
34
|
-
end
|
1
|
+
require 'squib'
|
2
|
+
require_relative 'version'
|
3
|
+
|
4
|
+
# Note: run this code by running "rake" at the command line
|
5
|
+
# To see full list of options, run "rake -T"
|
6
|
+
|
7
|
+
data = Squib.xlsx file: 'data/game.xlsx', sheet: 0
|
8
|
+
|
9
|
+
Squib::Deck.new(cards: data.nrows) do
|
10
|
+
background color: :white
|
11
|
+
use_layout file: 'layouts/deck.yml'
|
12
|
+
|
13
|
+
text str: data.name, layout: :name
|
14
|
+
|
15
|
+
text str: data.atk.map { |s| "#{s} ATK" }, layout: :ATK
|
16
|
+
text str: data.def.map { |s| "#{s} DEF" }, layout: :DEF
|
17
|
+
|
18
|
+
svg file: 'example.svg'
|
19
|
+
|
20
|
+
text str: MySquibGame::VERSION, layout: :version
|
21
|
+
|
22
|
+
build(:proofs) do
|
23
|
+
safe_zone
|
24
|
+
cut_zone
|
25
|
+
end
|
26
|
+
|
27
|
+
save format: :png
|
28
|
+
|
29
|
+
build(:pnp) do
|
30
|
+
save_sheet prefix: 'pnp_sheet_',
|
31
|
+
trim: '0.125in',
|
32
|
+
rows: 3, columns: 3
|
33
|
+
end
|
34
|
+
end
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module MySquibGame
|
2
|
-
VERSION = '1.0'
|
3
|
-
end
|
1
|
+
module MySquibGame
|
2
|
+
VERSION = '1.0'
|
3
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
_output/*.png
|
2
|
-
_output/*.pdf
|
3
|
-
~$*
|
4
|
-
.DS_Store
|
1
|
+
_output/*.png
|
2
|
+
_output/*.pdf
|
3
|
+
~$*
|
4
|
+
.DS_Store
|
@@ -1,19 +1,19 @@
|
|
1
|
-
My Awesome Game
|
2
|
-
===============
|
3
|
-
|
4
|
-
Check out my awesome game!
|
5
|
-
|
6
|
-
|
7
|
-
Objective
|
8
|
-
---------
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
Gameplay
|
13
|
-
--------
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
Ending the Game
|
18
|
-
---------------
|
19
|
-
|
1
|
+
My Awesome Game
|
2
|
+
===============
|
3
|
+
|
4
|
+
Check out my awesome game!
|
5
|
+
|
6
|
+
|
7
|
+
Objective
|
8
|
+
---------
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
Gameplay
|
13
|
+
--------
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
Ending the Game
|
18
|
+
---------------
|
19
|
+
|
@@ -1,3 +1,3 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
gem 'squib'
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem 'squib'
|
@@ -1,22 +1,22 @@
|
|
1
|
-
# Title Ideas
|
2
|
-
|
3
|
-
* First idea
|
4
|
-
* Second idea
|
5
|
-
|
6
|
-
|
7
|
-
# Things to Try
|
8
|
-
|
9
|
-
* Idea
|
10
|
-
* Idea
|
11
|
-
|
12
|
-
# Feedback Ideas
|
13
|
-
|
14
|
-
* Feedback
|
15
|
-
* Feedback
|
16
|
-
|
17
|
-
# Problems To Work On
|
18
|
-
|
19
|
-
* Problem
|
20
|
-
* Problem
|
21
|
-
|
22
|
-
|
1
|
+
# Title Ideas
|
2
|
+
|
3
|
+
* First idea
|
4
|
+
* Second idea
|
5
|
+
|
6
|
+
|
7
|
+
# Things to Try
|
8
|
+
|
9
|
+
* Idea
|
10
|
+
* Idea
|
11
|
+
|
12
|
+
# Feedback Ideas
|
13
|
+
|
14
|
+
* Feedback
|
15
|
+
* Feedback
|
16
|
+
|
17
|
+
# Problems To Work On
|
18
|
+
|
19
|
+
* Problem
|
20
|
+
* Problem
|
21
|
+
|
22
|
+
|
@@ -1,26 +1,26 @@
|
|
1
|
-
# Playtesting Log
|
2
|
-
|
3
|
-
# Playtest Report Survey
|
4
|
-
|
5
|
-
## Basic Info
|
6
|
-
* Num. Players:
|
7
|
-
* How many sessions of this game have you played before?
|
8
|
-
* How long did you play?
|
9
|
-
* How did you prepare for teaching the rules? Read the sheet with everyone there, or did someone read it ahead of time?
|
10
|
-
* What types of players played with you? What are their favorite games?
|
11
|
-
* What version were you testing?
|
12
|
-
* What date did you play?
|
13
|
-
|
14
|
-
## Did it work?
|
15
|
-
* Was there a moment that you felt the game was "broken"? Describe what happened.
|
16
|
-
* How close were the scores? Did everyone feel like they had a fair chance at winning?
|
17
|
-
* Were there any moments that you had to go back to the rules for clarification? What resulted of that - are you still unclear, or was it just a misunderstanding?
|
18
|
-
* Any ideas for clearer rules?
|
19
|
-
* Any ideas for clearer icons, artwork, in-game helps, etc?
|
20
|
-
|
21
|
-
## Was it fun?
|
22
|
-
* Based on the description, artwork, branding, etc. was this game what you expected?
|
23
|
-
* Were the theme, artwork, and icons engaging?
|
24
|
-
* Did this game have the depth of strategy that you were expecting?
|
25
|
-
* What were the moments that people felt like they were having the most fun? The least fun?
|
26
|
-
* Assuming trivial issues are fixed, would you recommend this to someone else?
|
1
|
+
# Playtesting Log
|
2
|
+
|
3
|
+
# Playtest Report Survey
|
4
|
+
|
5
|
+
## Basic Info
|
6
|
+
* Num. Players:
|
7
|
+
* How many sessions of this game have you played before?
|
8
|
+
* How long did you play?
|
9
|
+
* How did you prepare for teaching the rules? Read the sheet with everyone there, or did someone read it ahead of time?
|
10
|
+
* What types of players played with you? What are their favorite games?
|
11
|
+
* What version were you testing?
|
12
|
+
* What date did you play?
|
13
|
+
|
14
|
+
## Did it work?
|
15
|
+
* Was there a moment that you felt the game was "broken"? Describe what happened.
|
16
|
+
* How close were the scores? Did everyone feel like they had a fair chance at winning?
|
17
|
+
* Were there any moments that you had to go back to the rules for clarification? What resulted of that - are you still unclear, or was it just a misunderstanding?
|
18
|
+
* Any ideas for clearer rules?
|
19
|
+
* Any ideas for clearer icons, artwork, in-game helps, etc?
|
20
|
+
|
21
|
+
## Was it fun?
|
22
|
+
* Based on the description, artwork, branding, etc. was this game what you expected?
|
23
|
+
* Were the theme, artwork, and icons engaging?
|
24
|
+
* Did this game have the depth of strategy that you were expecting?
|
25
|
+
* What were the moments that people felt like they were having the most fun? The least fun?
|
26
|
+
* Assuming trivial issues are fixed, would you recommend this to someone else?
|
@@ -1,4 +1,4 @@
|
|
1
|
-
Print and Play Notes
|
2
|
-
====================
|
3
|
-
|
1
|
+
Print and Play Notes
|
2
|
+
====================
|
3
|
+
|
4
4
|
Fill this out to give tips on how to play this with print and play.
|
@@ -1,21 +1,21 @@
|
|
1
|
-
# Intro
|
2
|
-
|
3
|
-
What is this game about? How many players?
|
4
|
-
|
5
|
-
# Objective
|
6
|
-
|
7
|
-
What is the object of the game?
|
8
|
-
|
9
|
-
# Components
|
10
|
-
|
11
|
-
What are the components? List them out.
|
12
|
-
|
13
|
-
# Gameplay
|
14
|
-
|
15
|
-
What does each turn look like? Describe a turn.
|
16
|
-
|
17
|
-
# Scoring
|
18
|
-
|
19
|
-
How is victory assigned?
|
20
|
-
|
21
|
-
|
1
|
+
# Intro
|
2
|
+
|
3
|
+
What is this game about? How many players?
|
4
|
+
|
5
|
+
# Objective
|
6
|
+
|
7
|
+
What is the object of the game?
|
8
|
+
|
9
|
+
# Components
|
10
|
+
|
11
|
+
What are the components? List them out.
|
12
|
+
|
13
|
+
# Gameplay
|
14
|
+
|
15
|
+
What does each turn look like? Describe a turn.
|
16
|
+
|
17
|
+
# Scoring
|
18
|
+
|
19
|
+
How is victory assigned?
|
20
|
+
|
21
|
+
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'squib'
|
2
|
-
|
3
|
-
task default: [:deck]
|
4
|
-
|
5
|
-
task :deck do
|
6
|
-
load 'deck.rb'
|
7
|
-
end
|
1
|
+
require 'squib'
|
2
|
+
|
3
|
+
task default: [:deck]
|
4
|
+
|
5
|
+
task :deck do
|
6
|
+
load 'deck.rb'
|
7
|
+
end
|
@@ -1,49 +1,49 @@
|
|
1
|
-
# Settings in the config.yml are overriding Squib's defaults. Anything in the main script will override this.
|
2
|
-
|
3
|
-
# DPI is used in making PDFs and in unit conversions
|
4
|
-
# Default: 300
|
5
|
-
#dpi: 72
|
6
|
-
|
7
|
-
#antialias: best #recommended. Only about 10% slower than fast
|
8
|
-
#antialias: default # set the anti-aliasing algorithm. default defers to the underlying graphics device. See http://www.cairographics.org/manual/cairo-cairo-t.html#cairo-antialias-t
|
9
|
-
|
10
|
-
# Text hints are used to show the boundaries of text boxes.
|
11
|
-
# Can be enabled/disabled at the command-level, or set globally with `set`
|
12
|
-
#text_hint: '#F00'
|
13
|
-
|
14
|
-
# Show progress bars on the command line for potentially long-running operations
|
15
|
-
#progress_bars: true
|
16
|
-
|
17
|
-
#Enable some custom colors that can be used in any color
|
18
|
-
#custom_colors:
|
19
|
-
# foo: '#abc'
|
20
|
-
|
21
|
-
#For reading image file command (e.g. png and svg), read from this directory instead
|
22
|
-
#img_dir: img-color
|
23
|
-
#img_dir: img-bw
|
24
|
-
|
25
|
-
# Use a SVG cairo back end, instead of an in-memory buffer
|
26
|
-
# backend: :memory # default
|
27
|
-
# backend: :svg # can create scalable pdfs, but rendering done at the printer level is not as good as Cairo.
|
28
|
-
|
29
|
-
# Configure what text markup uses replace characters
|
30
|
-
# Below are the defaults
|
31
|
-
# lsquote: "\u2018" #note that Yaml wants double quotes here to use escape chars
|
32
|
-
# rsquote: "\u2019"
|
33
|
-
# ldquote: "\u201C"
|
34
|
-
# rdquote: "\u201D"
|
35
|
-
# em_dash: "\u2014"
|
36
|
-
# en_dash: "\u2013"
|
37
|
-
# ellipsis: "\u2026"
|
38
|
-
|
39
|
-
# We can also disallow smart quotes and only allow explicit replacements with ``LaTeX-style'' quotes.
|
40
|
-
# smart_quotes: false
|
41
|
-
|
42
|
-
# By default, Squib warns when a text box is ellipsized. This can get verbose
|
43
|
-
# and can be turned off here
|
44
|
-
# warn_ellipsize: true # default
|
45
|
-
# warn_ellipsize: false # turn off entirely
|
46
|
-
|
47
|
-
# By default, Squib will warn if a PNG is being up-scaled.
|
48
|
-
# warn_png_scale: true # default
|
49
|
-
# warn_png_scale: false # turn off entirely
|
1
|
+
# Settings in the config.yml are overriding Squib's defaults. Anything in the main script will override this.
|
2
|
+
|
3
|
+
# DPI is used in making PDFs and in unit conversions
|
4
|
+
# Default: 300
|
5
|
+
#dpi: 72
|
6
|
+
|
7
|
+
#antialias: best #recommended. Only about 10% slower than fast
|
8
|
+
#antialias: default # set the anti-aliasing algorithm. default defers to the underlying graphics device. See http://www.cairographics.org/manual/cairo-cairo-t.html#cairo-antialias-t
|
9
|
+
|
10
|
+
# Text hints are used to show the boundaries of text boxes.
|
11
|
+
# Can be enabled/disabled at the command-level, or set globally with `set`
|
12
|
+
#text_hint: '#F00'
|
13
|
+
|
14
|
+
# Show progress bars on the command line for potentially long-running operations
|
15
|
+
#progress_bars: true
|
16
|
+
|
17
|
+
#Enable some custom colors that can be used in any color
|
18
|
+
#custom_colors:
|
19
|
+
# foo: '#abc'
|
20
|
+
|
21
|
+
#For reading image file command (e.g. png and svg), read from this directory instead
|
22
|
+
#img_dir: img-color
|
23
|
+
#img_dir: img-bw
|
24
|
+
|
25
|
+
# Use a SVG cairo back end, instead of an in-memory buffer
|
26
|
+
# backend: :memory # default
|
27
|
+
# backend: :svg # can create scalable pdfs, but rendering done at the printer level is not as good as Cairo.
|
28
|
+
|
29
|
+
# Configure what text markup uses replace characters
|
30
|
+
# Below are the defaults
|
31
|
+
# lsquote: "\u2018" #note that Yaml wants double quotes here to use escape chars
|
32
|
+
# rsquote: "\u2019"
|
33
|
+
# ldquote: "\u201C"
|
34
|
+
# rdquote: "\u201D"
|
35
|
+
# em_dash: "\u2014"
|
36
|
+
# en_dash: "\u2013"
|
37
|
+
# ellipsis: "\u2026"
|
38
|
+
|
39
|
+
# We can also disallow smart quotes and only allow explicit replacements with ``LaTeX-style'' quotes.
|
40
|
+
# smart_quotes: false
|
41
|
+
|
42
|
+
# By default, Squib warns when a text box is ellipsized. This can get verbose
|
43
|
+
# and can be turned off here
|
44
|
+
# warn_ellipsize: true # default
|
45
|
+
# warn_ellipsize: false # turn off entirely
|
46
|
+
|
47
|
+
# By default, Squib will warn if a PNG is being up-scaled.
|
48
|
+
# warn_png_scale: true # default
|
49
|
+
# warn_png_scale: false # turn off entirely
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require 'squib'
|
2
|
-
|
3
|
-
Squib::Deck.new(cards: 3, layout: 'layout.yml') do
|
4
|
-
text str: 'Hello, World!'
|
5
|
-
save format: :png
|
6
|
-
end
|
1
|
+
require 'squib'
|
2
|
+
|
3
|
+
Squib::Deck.new(cards: 3, layout: 'layout.yml') do
|
4
|
+
text str: 'Hello, World!'
|
5
|
+
save format: :png
|
6
|
+
end
|
@@ -1,42 +1,42 @@
|
|
1
|
-
---
|
2
|
-
sheet_width: 210mm
|
3
|
-
sheet_height: 297mm
|
4
|
-
card_width: 59.0mm
|
5
|
-
card_height: 92.0mm
|
6
|
-
cards:
|
7
|
-
- x: 16.5mm
|
8
|
-
y: 10.0mm
|
9
|
-
- x: 75.5mm
|
10
|
-
y: 10.0mm
|
11
|
-
- x: 134.5mm
|
12
|
-
y: 10.0mm
|
13
|
-
- x: 16.5mm
|
14
|
-
y: 102.0mm
|
15
|
-
- x: 75.5mm
|
16
|
-
y: 102.0mm
|
17
|
-
- x: 134.5mm
|
18
|
-
y: 102.0mm
|
19
|
-
- x: 16.5mm
|
20
|
-
y: 194.0mm
|
21
|
-
- x: 75.5mm
|
22
|
-
y: 194.0mm
|
23
|
-
- x: 134.5mm
|
24
|
-
y: 194.0mm
|
25
|
-
crop_line:
|
26
|
-
lines:
|
27
|
-
- type: :vertical
|
28
|
-
position: 16.5mm
|
29
|
-
- type: :vertical
|
30
|
-
position: 75.5mm
|
31
|
-
- type: :vertical
|
32
|
-
position: 134.5mm
|
33
|
-
- type: :vertical
|
34
|
-
position: 193.5mm
|
35
|
-
- type: :horizontal
|
36
|
-
position: 10.0mm
|
37
|
-
- type: :horizontal
|
38
|
-
position: 102.0mm
|
39
|
-
- type: :horizontal
|
40
|
-
position: 194.0mm
|
41
|
-
- type: :horizontal
|
42
|
-
position: 286.0mm
|
1
|
+
---
|
2
|
+
sheet_width: 210mm
|
3
|
+
sheet_height: 297mm
|
4
|
+
card_width: 59.0mm
|
5
|
+
card_height: 92.0mm
|
6
|
+
cards:
|
7
|
+
- x: 16.5mm
|
8
|
+
y: 10.0mm
|
9
|
+
- x: 75.5mm
|
10
|
+
y: 10.0mm
|
11
|
+
- x: 134.5mm
|
12
|
+
y: 10.0mm
|
13
|
+
- x: 16.5mm
|
14
|
+
y: 102.0mm
|
15
|
+
- x: 75.5mm
|
16
|
+
y: 102.0mm
|
17
|
+
- x: 134.5mm
|
18
|
+
y: 102.0mm
|
19
|
+
- x: 16.5mm
|
20
|
+
y: 194.0mm
|
21
|
+
- x: 75.5mm
|
22
|
+
y: 194.0mm
|
23
|
+
- x: 134.5mm
|
24
|
+
y: 194.0mm
|
25
|
+
crop_line:
|
26
|
+
lines:
|
27
|
+
- type: :vertical
|
28
|
+
position: 16.5mm
|
29
|
+
- type: :vertical
|
30
|
+
position: 75.5mm
|
31
|
+
- type: :vertical
|
32
|
+
position: 134.5mm
|
33
|
+
- type: :vertical
|
34
|
+
position: 193.5mm
|
35
|
+
- type: :horizontal
|
36
|
+
position: 10.0mm
|
37
|
+
- type: :horizontal
|
38
|
+
position: 102.0mm
|
39
|
+
- type: :horizontal
|
40
|
+
position: 194.0mm
|
41
|
+
- type: :horizontal
|
42
|
+
position: 286.0mm
|