fontist 3.0.1 → 3.0.2
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/workflows/discover-fonts.yml +76 -0
- data/.github/workflows/rake.yml +103 -8
- data/TODO.audit-docs.md +164 -0
- data/TODO.improve-docs.md +114 -0
- data/TODO.upgrade-excavate.md +107 -0
- data/docs/guide/formulas.md +37 -1
- data/docs/guide/how-it-works.md +13 -0
- data/docs/guide/platforms/windows.md +67 -0
- data/lib/fontist/errors.rb +21 -0
- data/lib/fontist/font_installer.rb +2 -0
- data/lib/fontist/formula.rb +11 -0
- data/lib/fontist/import/create_formula.rb +5 -0
- data/lib/fontist/import/formula_builder.rb +9 -0
- data/lib/fontist/import/windows/fod_capabilities.yml +654 -0
- data/lib/fontist/import/windows/windows_license.txt +4 -0
- data/lib/fontist/import/windows.rb +162 -0
- data/lib/fontist/import.rb +1 -0
- data/lib/fontist/import_source.rb +1 -0
- data/lib/fontist/resource.rb +5 -1
- data/lib/fontist/resources/windows_fod_resource.rb +51 -0
- data/lib/fontist/resources.rb +1 -0
- data/lib/fontist/utils/downloader.rb +8 -3
- data/lib/fontist/utils/system.rb +17 -0
- data/lib/fontist/version.rb +1 -1
- data/lib/fontist/windows_fod_metadata.rb +83 -0
- data/lib/fontist/windows_import_source.rb +54 -0
- data/lib/fontist.rb +2 -0
- data/script/generate_windows_formulas.rb +24 -0
- data/script/validate_windows_fod_ci.rb +175 -0
- metadata +13 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fontist
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: down
|
|
@@ -273,7 +273,10 @@ files:
|
|
|
273
273
|
- LICENSE.txt
|
|
274
274
|
- README.adoc
|
|
275
275
|
- Rakefile
|
|
276
|
+
- TODO.audit-docs.md
|
|
276
277
|
- TODO.fontist-v5.md
|
|
278
|
+
- TODO.improve-docs.md
|
|
279
|
+
- TODO.upgrade-excavate.md
|
|
277
280
|
- docs/.gitignore
|
|
278
281
|
- docs/.vitepress/config.ts
|
|
279
282
|
- docs/.vitepress/data/cli-commands.json
|
|
@@ -434,6 +437,9 @@ files:
|
|
|
434
437
|
- lib/fontist/import/text_helper.rb
|
|
435
438
|
- lib/fontist/import/upgrade_formulas.rb
|
|
436
439
|
- lib/fontist/import/v4_to_v5_migrator.rb
|
|
440
|
+
- lib/fontist/import/windows.rb
|
|
441
|
+
- lib/fontist/import/windows/fod_capabilities.yml
|
|
442
|
+
- lib/fontist/import/windows/windows_license.txt
|
|
437
443
|
- lib/fontist/import_cli.rb
|
|
438
444
|
- lib/fontist/import_source.rb
|
|
439
445
|
- lib/fontist/index.rb
|
|
@@ -486,6 +492,7 @@ files:
|
|
|
486
492
|
- lib/fontist/resources/apple_cdn_resource.rb
|
|
487
493
|
- lib/fontist/resources/archive_resource.rb
|
|
488
494
|
- lib/fontist/resources/google_resource.rb
|
|
495
|
+
- lib/fontist/resources/windows_fod_resource.rb
|
|
489
496
|
- lib/fontist/sil_import_source.rb
|
|
490
497
|
- lib/fontist/style_version.rb
|
|
491
498
|
- lib/fontist/system.yml
|
|
@@ -506,9 +513,13 @@ files:
|
|
|
506
513
|
- lib/fontist/validation.rb
|
|
507
514
|
- lib/fontist/validator.rb
|
|
508
515
|
- lib/fontist/version.rb
|
|
516
|
+
- lib/fontist/windows_fod_metadata.rb
|
|
517
|
+
- lib/fontist/windows_import_source.rb
|
|
509
518
|
- lib/tasks/system_fonts.rake
|
|
510
519
|
- script/capture_system_fonts
|
|
511
520
|
- script/download_system_indexes
|
|
521
|
+
- script/generate_windows_formulas.rb
|
|
522
|
+
- script/validate_windows_fod_ci.rb
|
|
512
523
|
homepage: https://github.com/fontist/fontist
|
|
513
524
|
licenses:
|
|
514
525
|
- BSD-2-Clause
|