fontist 1.18.2 → 1.20.0
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/deploy-pages.yml +48 -0
- data/.github/workflows/tebako-pack.yml +61 -0
- data/LICENSE.txt +1 -2
- data/README.adoc +28 -4
- data/docs/.gitignore +136 -0
- data/docs/.vitepress/config.ts +83 -0
- data/docs/guide/api-ruby.md +190 -0
- data/docs/guide/ci.md +29 -0
- data/docs/guide/fontconfig.md +23 -0
- data/docs/guide/index.md +67 -0
- data/docs/guide/proxy.md +47 -0
- data/docs/guide/why.md +7 -0
- data/docs/index.md +40 -0
- data/docs/package-lock.json +1791 -0
- data/docs/package.json +17 -0
- data/docs/public/hero.png +0 -0
- data/docs/public/logo.png +0 -0
- data/docs/reference/index.md +143 -0
- data/fontist.gemspec +3 -0
- data/lib/fontist/cli/class_options.rb +7 -0
- data/lib/fontist/cli.rb +1 -0
- data/lib/fontist/config.rb +23 -7
- data/lib/fontist/config_cli.rb +26 -8
- data/lib/fontist/errors.rb +2 -0
- data/lib/fontist/font.rb +50 -10
- data/lib/fontist/formula.rb +71 -3
- data/lib/fontist/formula_suggestion.rb +55 -0
- data/lib/fontist/version.rb +1 -1
- data/lib/fontist.rb +9 -1
- metadata +61 -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: 1.
|
4
|
+
version: 1.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: down
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: fuzzy_match
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.1'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: json
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -296,6 +310,34 @@ dependencies:
|
|
296
310
|
- - "~>"
|
297
311
|
- !ruby/object:Gem::Version
|
298
312
|
version: '1.10'
|
313
|
+
- !ruby/object:Gem::Dependency
|
314
|
+
name: vcr
|
315
|
+
requirement: !ruby/object:Gem::Requirement
|
316
|
+
requirements:
|
317
|
+
- - ">="
|
318
|
+
- !ruby/object:Gem::Version
|
319
|
+
version: '0'
|
320
|
+
type: :development
|
321
|
+
prerelease: false
|
322
|
+
version_requirements: !ruby/object:Gem::Requirement
|
323
|
+
requirements:
|
324
|
+
- - ">="
|
325
|
+
- !ruby/object:Gem::Version
|
326
|
+
version: '0'
|
327
|
+
- !ruby/object:Gem::Dependency
|
328
|
+
name: webmock
|
329
|
+
requirement: !ruby/object:Gem::Requirement
|
330
|
+
requirements:
|
331
|
+
- - ">="
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
version: '0'
|
334
|
+
type: :development
|
335
|
+
prerelease: false
|
336
|
+
version_requirements: !ruby/object:Gem::Requirement
|
337
|
+
requirements:
|
338
|
+
- - ">="
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
version: '0'
|
299
341
|
description: Install openly-licensed fonts on Windows, Linux and Mac!
|
300
342
|
email:
|
301
343
|
- open.source@ribose.com
|
@@ -304,6 +346,8 @@ executables:
|
|
304
346
|
extensions: []
|
305
347
|
extra_rdoc_files: []
|
306
348
|
files:
|
349
|
+
- ".github/workflows/deploy-pages.yml"
|
350
|
+
- ".github/workflows/tebako-pack.yml"
|
307
351
|
- ".github/workflows/test-and-release.yml"
|
308
352
|
- ".gitignore"
|
309
353
|
- ".hound.yml"
|
@@ -313,6 +357,20 @@ files:
|
|
313
357
|
- LICENSE.txt
|
314
358
|
- README.adoc
|
315
359
|
- Rakefile
|
360
|
+
- docs/.gitignore
|
361
|
+
- docs/.vitepress/config.ts
|
362
|
+
- docs/guide/api-ruby.md
|
363
|
+
- docs/guide/ci.md
|
364
|
+
- docs/guide/fontconfig.md
|
365
|
+
- docs/guide/index.md
|
366
|
+
- docs/guide/proxy.md
|
367
|
+
- docs/guide/why.md
|
368
|
+
- docs/index.md
|
369
|
+
- docs/package-lock.json
|
370
|
+
- docs/package.json
|
371
|
+
- docs/public/hero.png
|
372
|
+
- docs/public/logo.png
|
373
|
+
- docs/reference/index.md
|
316
374
|
- exe/fontist
|
317
375
|
- fontist.gemspec
|
318
376
|
- lib/fontist.rb
|
@@ -332,6 +390,7 @@ files:
|
|
332
390
|
- lib/fontist/fontconfig_cli.rb
|
333
391
|
- lib/fontist/formula.rb
|
334
392
|
- lib/fontist/formula_picker.rb
|
393
|
+
- lib/fontist/formula_suggestion.rb
|
335
394
|
- lib/fontist/helpers.rb
|
336
395
|
- lib/fontist/import.rb
|
337
396
|
- lib/fontist/import/convert_formulas.rb
|