squib 0.18.0 → 0.19.0a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -39
- data/.github/ISSUE_TEMPLATE/feature_request.md +22 -22
- data/.github/ISSUE_TEMPLATE/help-wanted.md +13 -13
- data/.github/ISSUE_TEMPLATE/release-todo.md +45 -33
- data/.github/PULL_REQUEST_TEMPLATE.md +13 -13
- data/.github/workflows/tests.yml +22 -22
- data/.gitignore +41 -41
- data/.vscode/settings.json +4 -3
- data/CHANGELOG.md +460 -460
- data/CONTRIBUTING.md +40 -40
- data/Dockerfile +27 -27
- data/Gemfile +2 -2
- data/Guardfile +8 -8
- data/LICENSE.txt +22 -22
- data/README.md +139 -139
- data/Rakefile +51 -51
- data/bin/squib +5 -5
- data/lib/squib/api/settings.rb +21 -21
- data/lib/squib/args/arg_loader.rb +138 -138
- data/lib/squib/args/box.rb +59 -59
- data/lib/squib/args/card_range.rb +34 -34
- data/lib/squib/args/color_validator.rb +7 -7
- data/lib/squib/args/coords.rb +49 -49
- data/lib/squib/args/csv_opts.rb +22 -22
- data/lib/squib/args/dir_validator.rb +11 -11
- data/lib/squib/args/draw.rb +93 -93
- data/lib/squib/args/drop_shadow.rb +39 -39
- data/lib/squib/args/embed_adjust.rb +22 -22
- data/lib/squib/args/embed_key.rb +12 -12
- data/lib/squib/args/hand_special.rb +37 -37
- data/lib/squib/args/import.rb +67 -67
- data/lib/squib/args/input_file.rb +55 -55
- data/lib/squib/args/paint.rb +43 -43
- data/lib/squib/args/paragraph.rb +118 -118
- data/lib/squib/args/save_batch.rb +65 -65
- data/lib/squib/args/scale_box.rb +57 -57
- data/lib/squib/args/sheet.rb +165 -165
- 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 +55 -55
- data/lib/squib/args/typographer.rb +115 -115
- data/lib/squib/args/unit_conversion.rb +27 -27
- data/lib/squib/args/xywh_shorthands.rb +50 -50
- 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 +50 -50
- 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 +149 -149
- data/lib/squib/constants.rb +17 -17
- data/lib/squib/deck.rb +138 -138
- data/lib/squib/dsl/background.rb +35 -35
- data/lib/squib/dsl/circle.rb +39 -39
- data/lib/squib/dsl/csv.rb +42 -42
- data/lib/squib/dsl/curve.rb +35 -35
- data/lib/squib/dsl/cut_zone.rb +47 -47
- data/lib/squib/dsl/ellipse.rb +37 -37
- data/lib/squib/dsl/grid.rb +35 -35
- data/lib/squib/dsl/groups.rb +54 -54
- data/lib/squib/dsl/hand.rb +42 -42
- data/lib/squib/dsl/line.rb +35 -35
- data/lib/squib/dsl/png.rb +57 -57
- data/lib/squib/dsl/polygon.rb +36 -36
- data/lib/squib/dsl/rect.rb +37 -37
- data/lib/squib/dsl/safe_zone.rb +48 -48
- data/lib/squib/dsl/save.rb +21 -21
- data/lib/squib/dsl/save_pdf.rb +50 -50
- data/lib/squib/dsl/save_png.rb +48 -48
- data/lib/squib/dsl/save_sheet.rb +53 -53
- data/lib/squib/dsl/showcase.rb +43 -43
- data/lib/squib/dsl/star.rb +37 -37
- data/lib/squib/dsl/svg.rb +63 -63
- data/lib/squib/dsl/text.rb +54 -54
- data/lib/squib/dsl/text_embed.rb +79 -79
- data/lib/squib/dsl/triangle.rb +35 -35
- data/lib/squib/dsl/units.rb +37 -37
- data/lib/squib/dsl/xlsx.rb +40 -40
- data/lib/squib/dsl/yaml.rb +40 -40
- data/lib/squib/errors_warnings/warn_unexpected_params.rb +14 -14
- data/lib/squib/graphics/background.rb +14 -14
- data/lib/squib/graphics/cairo_context_wrapper.rb +115 -115
- 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 +77 -77
- data/lib/squib/graphics/save_images.rb +91 -91
- data/lib/squib/graphics/save_pdf.rb +90 -90
- data/lib/squib/graphics/save_sprue.rb +231 -231
- data/lib/squib/graphics/shapes.rb +143 -143
- data/lib/squib/graphics/showcase.rb +85 -85
- data/lib/squib/graphics/text.rb +202 -202
- data/lib/squib/import/csv_importer.rb +45 -45
- data/lib/squib/import/data_frame.rb +108 -108
- data/lib/squib/import/quantity_exploder.rb +17 -17
- data/lib/squib/import/xlsx_importer.rb +28 -28
- data/lib/squib/import/yaml_importer.rb +30 -30
- data/lib/squib/layout_parser.rb +155 -155
- 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 +208 -208
- data/lib/squib/sprues/sprue_schema.rb +51 -51
- data/lib/squib/system_fonts.rb +16 -16
- data/lib/squib/version.rb +11 -11
- data/lib/squib.rb +35 -35
- data/samples/autoscale_font/_autoscale_font.rb +98 -98
- 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/images/_placeholders.rb +48 -48
- 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 +28 -28
- data/samples/saves/_save_pdf.rb +29 -29
- data/samples/saves/_saves.rb +75 -75
- data/samples/saves/_showcase.rb +25 -25
- data/samples/shadows/_shadow.rb +71 -71
- 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 +22 -22
- data/samples/sprues/_fold_sheet.rb +30 -30
- data/samples/sprues/_hex_tiles.rb +15 -15
- data/samples/sprues/_mints.rb +11 -11
- data/samples/sprues/_negative_coords.rb +6 -6
- data/samples/sprues/_sprue_example.rb +11 -11
- data/samples/system_font_debug/_list_fonts.rb +14 -14
- data/samples/text/_embed_text.rb +128 -128
- data/samples/text/_text.rb +52 -52
- data/samples/text/_text_options.rb +103 -103
- data/samples/text/bug134.rb +14 -14
- data/samples/units/_cells.rb +50 -50
- data/samples/units/_shorthands.rb +48 -48
- data/samples/units/_units.rb +39 -39
- data/squib.gemspec +58 -58
- metadata +21 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c46d078189e6f5437a524b7750d7db5c9cba2e13874a84a4efa7e9bc5e6814d
|
|
4
|
+
data.tar.gz: 1998b40afc95370a3d46424f435f6bf69386e53a85ed65baa3837e16b23c647e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba58529d91f3f59313373fbb6e85652ace3c09e96efc96fec72e0276c1ed4413d651bc0af4ae801ac47b280d8a6712198bca90191e11856442f34446ffb09154
|
|
7
|
+
data.tar.gz: c6dae28717bb6e2d3e818b8f4ae1d3aa7b7e12a2e0b7b1354c3f3b8136d1a90d18cacd25d5a032e27810f7e9a4108d064d1a62de48ec25bbea6c04afd8c05869
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Report something that seems wrong
|
|
4
|
-
title: ''
|
|
5
|
-
labels: bug
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Describe the bug**
|
|
11
|
-
A clear and concise description of what the bug is.
|
|
12
|
-
|
|
13
|
-
**To Reproduce**
|
|
14
|
-
Steps to reproduce the behavior:
|
|
15
|
-
1. My code looks like this...
|
|
16
|
-
2. When I run it like this...
|
|
17
|
-
3. I see this error...
|
|
18
|
-
|
|
19
|
-
**Expected behavior**
|
|
20
|
-
A clear and concise description of what you expected to happen.
|
|
21
|
-
|
|
22
|
-
**Screenshots**
|
|
23
|
-
We love screenshots!
|
|
24
|
-
* Windows: `Print Screen` key and then `ctrl+v` directly into GitHub issues here.
|
|
25
|
-
* Shift + Command + 3, then `command+v` directly into GitHub issues here.
|
|
26
|
-
|
|
27
|
-
**Environment**
|
|
28
|
-
- OS: (e.g. Windows 11)
|
|
29
|
-
- Ruby version (e.g. 2.7, 3.0)
|
|
30
|
-
|
|
31
|
-
**Additional context**
|
|
32
|
-
Add any other context about the problem here.
|
|
33
|
-
|
|
34
|
-
**Check the following:**
|
|
35
|
-
|
|
36
|
-
- [ ] I have updated Squib to the latest version.
|
|
37
|
-
- [ ] I have checked the Squib issues backlog for something similar
|
|
38
|
-
- [ ] I have attempted to make a minimal script demonstrating my problem
|
|
39
|
-
- [ ] I have reviewed the [Squib Docs](https://squib.readthedocs.io/) and there's still a problem
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Report something that seems wrong
|
|
4
|
+
title: ''
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. My code looks like this...
|
|
16
|
+
2. When I run it like this...
|
|
17
|
+
3. I see this error...
|
|
18
|
+
|
|
19
|
+
**Expected behavior**
|
|
20
|
+
A clear and concise description of what you expected to happen.
|
|
21
|
+
|
|
22
|
+
**Screenshots**
|
|
23
|
+
We love screenshots!
|
|
24
|
+
* Windows: `Print Screen` key and then `ctrl+v` directly into GitHub issues here.
|
|
25
|
+
* Shift + Command + 3, then `command+v` directly into GitHub issues here.
|
|
26
|
+
|
|
27
|
+
**Environment**
|
|
28
|
+
- OS: (e.g. Windows 11)
|
|
29
|
+
- Ruby version (e.g. 2.7, 3.0)
|
|
30
|
+
|
|
31
|
+
**Additional context**
|
|
32
|
+
Add any other context about the problem here.
|
|
33
|
+
|
|
34
|
+
**Check the following:**
|
|
35
|
+
|
|
36
|
+
- [ ] I have updated Squib to the latest version.
|
|
37
|
+
- [ ] I have checked the Squib issues backlog for something similar
|
|
38
|
+
- [ ] I have attempted to make a minimal script demonstrating my problem
|
|
39
|
+
- [ ] I have reviewed the [Squib Docs](https://squib.readthedocs.io/) and there's still a problem
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an idea for this project
|
|
4
|
-
title: ''
|
|
5
|
-
labels: enhancement
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Is your feature request related to a problem? Please describe.**
|
|
11
|
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
-
|
|
13
|
-
**Describe the solution you'd like**
|
|
14
|
-
A clear and concise description of what you want to happen. Make an example of what you want the syntax to look like.
|
|
15
|
-
|
|
16
|
-
**Describe alternatives you've considered**
|
|
17
|
-
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
-
|
|
19
|
-
**Additional context**
|
|
20
|
-
Add any other context or screenshots about the feature request here.
|
|
21
|
-
|
|
22
|
-
- [ ] I might be interested in implementing this myself
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen. Make an example of what you want the syntax to look like.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
21
|
+
|
|
22
|
+
- [ ] I might be interested in implementing this myself
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Help Wanted - USE GITHUB DISCUSSIONS INSTEAD
|
|
3
|
-
about: Need help doing something in Squib? We prefer you use the (new!) Discussions tab
|
|
4
|
-
title: Help Wanted - USE GITHUB DISCUSSIONS INSTEAD
|
|
5
|
-
labels: help wanted
|
|
6
|
-
assignees: andymeneely
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
Need help doing something in Squib? We prefer you use the (new!) Discussions tab
|
|
10
|
-
|
|
11
|
-
We prefer that GitHub issues be used for features or bugs.
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
---
|
|
2
|
+
name: Help Wanted - USE GITHUB DISCUSSIONS INSTEAD
|
|
3
|
+
about: Need help doing something in Squib? We prefer you use the (new!) Discussions tab
|
|
4
|
+
title: Help Wanted - USE GITHUB DISCUSSIONS INSTEAD
|
|
5
|
+
labels: help wanted
|
|
6
|
+
assignees: andymeneely
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
Need help doing something in Squib? We prefer you use the (new!) Discussions tab
|
|
10
|
+
|
|
11
|
+
We prefer that GitHub issues be used for features or bugs.
|
|
12
|
+
|
|
13
|
+
|
|
@@ -1,34 +1,46 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Release TODO list
|
|
3
|
-
about: Use this checklist when we release
|
|
4
|
-
title: Release v0.XYZ
|
|
5
|
-
labels: release
|
|
6
|
-
assignees: andymeneely
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
Be sure to remember to do the following for releases.
|
|
10
|
-
|
|
11
|
-
- [ ] CHANGELOG is written for all new changes
|
|
12
|
-
- [ ] README is updated
|
|
13
|
-
- [ ] Samples are updated
|
|
14
|
-
- [ ] Are all the dependencies up to date?
|
|
15
|
-
- [ ] Check `sample_regression_spec.rb` regression tests are all enabled (i.e. `overwrite_sample` is commented out)
|
|
16
|
-
- [ ] Bump version.rb
|
|
17
|
-
- [ ] Bump docs/conf.py versions
|
|
18
|
-
- [ ] Do a full rake locally
|
|
19
|
-
- [ ] `rake sanity`, and check visually
|
|
20
|
-
- [ ] GitHub Actions is passing on dev branch
|
|
21
|
-
- [ ] Merge master branch
|
|
22
|
-
- [ ] Merge release branch
|
|
23
|
-
- [ ] Push master and release branches
|
|
24
|
-
- [ ] Create GitHub release tag
|
|
25
|
-
- [ ] `gem push pkg/squib-x.y.z.gem`
|
|
26
|
-
- [ ] Github milestone closed
|
|
27
|
-
- [ ] Activate version on squib.readthedocs.org (Versions)
|
|
28
|
-
- [ ] Set default version on squib.readthedocs.org (Advanced Settings)
|
|
29
|
-
- [ ] Bump version.rb to the next alpha
|
|
30
|
-
- [ ] Publish on BoardGameGeek thread
|
|
31
|
-
- [ ]
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
---
|
|
2
|
+
name: Release TODO list
|
|
3
|
+
about: Use this checklist when we release
|
|
4
|
+
title: Release v0.XYZ
|
|
5
|
+
labels: release
|
|
6
|
+
assignees: andymeneely
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
Be sure to remember to do the following for releases.
|
|
10
|
+
|
|
11
|
+
- [ ] CHANGELOG is written for all new changes
|
|
12
|
+
- [ ] README is updated
|
|
13
|
+
- [ ] Samples are updated
|
|
14
|
+
- [ ] Are all the dependencies up to date?
|
|
15
|
+
- [ ] Check `sample_regression_spec.rb` regression tests are all enabled (i.e. `overwrite_sample` is commented out)
|
|
16
|
+
- [ ] Bump version.rb
|
|
17
|
+
- [ ] Bump docs/conf.py versions
|
|
18
|
+
- [ ] Do a full rake locally
|
|
19
|
+
- [ ] `rake sanity`, and check visually
|
|
20
|
+
- [ ] GitHub Actions is passing on dev branch
|
|
21
|
+
- [ ] Merge master branch
|
|
22
|
+
- [ ] Merge release branch
|
|
23
|
+
- [ ] Push master and release branches
|
|
24
|
+
- [ ] Create GitHub release tag
|
|
25
|
+
- [ ] `gem push pkg/squib-x.y.z.gem`
|
|
26
|
+
- [ ] Github milestone closed
|
|
27
|
+
- [ ] Activate version on squib.readthedocs.org (Versions)
|
|
28
|
+
- [ ] Set default version on squib.readthedocs.org (Advanced Settings)
|
|
29
|
+
- [ ] Bump version.rb to the next alpha
|
|
30
|
+
- [ ] Publish on BoardGameGeek thread
|
|
31
|
+
- [ ] Anything else to add to this checklist?
|
|
32
|
+
|
|
33
|
+
# Docker
|
|
34
|
+
- [ ] Check Dockerfile for updates
|
|
35
|
+
- [ ] `docker build .`
|
|
36
|
+
- [ ] `docker tag XYZ andymeneely/squib:latest`
|
|
37
|
+
- [ ] `docker tag XYZ andymeneely/squib:version-0.XYZ.0`
|
|
38
|
+
- [ ] `docker push andymeneely/squib:latest`
|
|
39
|
+
- [ ] `docker push andymeneely/squib:version-0.XYZ.0`
|
|
40
|
+
- [ ] Check Docker build on Dockerhub: https://hub.docker.com/repository/docker/andymeneely/squib
|
|
41
|
+
- [ ] Check Docker docker pull: docker pull andymeneely/squib:latest
|
|
42
|
+
- [ ] Check Docker build locally in samples:
|
|
43
|
+
* Delete `samples/_output/basic_*.png`
|
|
44
|
+
* `docker run --rm -v c:\code\squib\samples:/usr/src/app -w /usr/src/app andymeneely/squib:latest ruby basic.rb`
|
|
45
|
+
* Check that the files were made
|
|
34
46
|
- [ ] Anything else to add to this checklist?
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
### Motivation
|
|
2
|
-
|
|
3
|
-
*Replace this line with why you are making this change.*
|
|
4
|
-
|
|
5
|
-
### Have you...
|
|
6
|
-
|
|
7
|
-
- [ ] Written a sample in `_samples`?
|
|
8
|
-
- [ ] Updated documentation in the `docs/` folder?
|
|
9
|
-
- [ ] Linked this PR to an issue?
|
|
10
|
-
- [ ] Written any automated tests?
|
|
11
|
-
- [ ] Refactored your code to be maintainable?
|
|
12
|
-
|
|
13
|
-
The above things are not required, but appreciated.
|
|
1
|
+
### Motivation
|
|
2
|
+
|
|
3
|
+
*Replace this line with why you are making this change.*
|
|
4
|
+
|
|
5
|
+
### Have you...
|
|
6
|
+
|
|
7
|
+
- [ ] Written a sample in `_samples`?
|
|
8
|
+
- [ ] Updated documentation in the `docs/` folder?
|
|
9
|
+
- [ ] Linked this PR to an issue?
|
|
10
|
+
- [ ] Written any automated tests?
|
|
11
|
+
- [ ] Refactored your code to be maintainable?
|
|
12
|
+
|
|
13
|
+
The above things are not required, but appreciated.
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
name: Squib Unit Tests
|
|
2
|
-
|
|
3
|
-
on: [push, pull_request]
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
test:
|
|
7
|
-
strategy:
|
|
8
|
-
fail-fast: false
|
|
9
|
-
matrix:
|
|
10
|
-
os: [ubuntu, macos]
|
|
11
|
-
ruby: [2.7, 3.0, head]
|
|
12
|
-
runs-on: ${{ matrix.os }}-latest
|
|
13
|
-
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos')}}
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v2
|
|
16
|
-
- uses: ruby/setup-ruby@v1
|
|
17
|
-
with:
|
|
18
|
-
ruby-version: ${{ matrix.ruby }}
|
|
19
|
-
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
20
|
-
- run: ruby --version # explicitly show the ruby version
|
|
21
|
-
- run: bundle install
|
|
22
|
-
- run: bundle exec rake
|
|
1
|
+
name: Squib Unit Tests
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
strategy:
|
|
8
|
+
fail-fast: false
|
|
9
|
+
matrix:
|
|
10
|
+
os: [ubuntu, macos]
|
|
11
|
+
ruby: [2.7, 3.0, head]
|
|
12
|
+
runs-on: ${{ matrix.os }}-latest
|
|
13
|
+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos')}}
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- uses: ruby/setup-ruby@v1
|
|
17
|
+
with:
|
|
18
|
+
ruby-version: ${{ matrix.ruby }}
|
|
19
|
+
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
20
|
+
- run: ruby --version # explicitly show the ruby version
|
|
21
|
+
- run: bundle install
|
|
22
|
+
- run: bundle exec rake
|
data/.gitignore
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
.DS_Store
|
|
2
|
-
*.gem
|
|
3
|
-
*.rbc
|
|
4
|
-
.bundle
|
|
5
|
-
.config
|
|
6
|
-
.yardoc
|
|
7
|
-
.inch
|
|
8
|
-
Gemfile.lock
|
|
9
|
-
InstalledFiles
|
|
10
|
-
_yardoc
|
|
11
|
-
coverage
|
|
12
|
-
docs/_build*
|
|
13
|
-
doc/
|
|
14
|
-
docs/_build
|
|
15
|
-
lib/bundler/man
|
|
16
|
-
pkg
|
|
17
|
-
rdoc
|
|
18
|
-
spec/reports
|
|
19
|
-
test/tmp
|
|
20
|
-
test/version_tmp
|
|
21
|
-
tmp
|
|
22
|
-
*.bundle
|
|
23
|
-
*.so
|
|
24
|
-
*.o
|
|
25
|
-
*.a
|
|
26
|
-
mkmf.log
|
|
27
|
-
_img
|
|
28
|
-
samples/_img
|
|
29
|
-
samples/_output/*.png
|
|
30
|
-
samples/_output/*.pdf
|
|
31
|
-
samples/_output/foo
|
|
32
|
-
samples/**/_output/*
|
|
33
|
-
rubocop.txt
|
|
34
|
-
benchmarks/_output/*.png
|
|
35
|
-
benchmarks/_output/*.pdf
|
|
36
|
-
benchmarks/_output/
|
|
37
|
-
samples/_output/*.svg
|
|
38
|
-
*.sublime-workspace
|
|
39
|
-
spec/samples/sanity.html
|
|
40
|
-
spec/samples/_diffs/*.png
|
|
41
|
-
.byebug_history
|
|
1
|
+
.DS_Store
|
|
2
|
+
*.gem
|
|
3
|
+
*.rbc
|
|
4
|
+
.bundle
|
|
5
|
+
.config
|
|
6
|
+
.yardoc
|
|
7
|
+
.inch
|
|
8
|
+
Gemfile.lock
|
|
9
|
+
InstalledFiles
|
|
10
|
+
_yardoc
|
|
11
|
+
coverage
|
|
12
|
+
docs/_build*
|
|
13
|
+
doc/
|
|
14
|
+
docs/_build
|
|
15
|
+
lib/bundler/man
|
|
16
|
+
pkg
|
|
17
|
+
rdoc
|
|
18
|
+
spec/reports
|
|
19
|
+
test/tmp
|
|
20
|
+
test/version_tmp
|
|
21
|
+
tmp
|
|
22
|
+
*.bundle
|
|
23
|
+
*.so
|
|
24
|
+
*.o
|
|
25
|
+
*.a
|
|
26
|
+
mkmf.log
|
|
27
|
+
_img
|
|
28
|
+
samples/_img
|
|
29
|
+
samples/_output/*.png
|
|
30
|
+
samples/_output/*.pdf
|
|
31
|
+
samples/_output/foo
|
|
32
|
+
samples/**/_output/*
|
|
33
|
+
rubocop.txt
|
|
34
|
+
benchmarks/_output/*.png
|
|
35
|
+
benchmarks/_output/*.pdf
|
|
36
|
+
benchmarks/_output/
|
|
37
|
+
samples/_output/*.svg
|
|
38
|
+
*.sublime-workspace
|
|
39
|
+
spec/samples/sanity.html
|
|
40
|
+
spec/samples/_diffs/*.png
|
|
41
|
+
.byebug_history
|
data/.vscode/settings.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
{
|
|
2
|
-
"restructuredtext.confPath": "${workspaceFolder}\\docs",
|
|
3
|
-
"restructuredtext.linter.disabled": true
|
|
1
|
+
{
|
|
2
|
+
"restructuredtext.confPath": "${workspaceFolder}\\docs",
|
|
3
|
+
"restructuredtext.linter.disabled": true,
|
|
4
|
+
"esbonio.sphinx.confDir": "${workspaceFolder}\\docs"
|
|
4
5
|
}
|