fontist 2.1.4 → 2.1.5
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/.gitignore +1 -0
- data/Gemfile +1 -0
- data/docs/.vitepress/config.ts +17 -0
- data/docs/cli/create-formula.md +6 -0
- data/docs/cli/import.md +4 -0
- data/docs/guide/formulas.md +73 -0
- data/docs/guide/installation.md +62 -0
- data/docs/guide/maintainer/import.md +372 -0
- data/docs/guide/maintainer/index.md +37 -0
- data/docs/guide/platforms/index.md +72 -0
- data/docs/guide/platforms/macos.md +151 -0
- data/docs/guide/platforms/windows.md +220 -0
- data/fontist.gemspec +0 -1
- data/lib/fontist/cache/manager.rb +0 -2
- data/lib/fontist/cache.rb +6 -0
- data/lib/fontist/cli/thor_ext.rb +0 -2
- data/lib/fontist/cli.rb +0 -9
- data/lib/fontist/collection_file.rb +0 -3
- data/lib/fontist/font.rb +0 -6
- data/lib/fontist/font_collection.rb +0 -1
- data/lib/fontist/font_file.rb +0 -1
- data/lib/fontist/font_installer.rb +0 -5
- data/lib/fontist/font_model.rb +0 -1
- data/lib/fontist/font_path.rb +0 -2
- data/lib/fontist/formula.rb +0 -13
- data/lib/fontist/formula_picker.rb +0 -2
- data/lib/fontist/google_import_source.rb +0 -2
- data/lib/fontist/import/convert_formulas.rb +0 -2
- data/lib/fontist/import/create_formula.rb +0 -4
- data/lib/fontist/import/files/collection_file.rb +0 -1
- data/lib/fontist/import/files.rb +8 -0
- data/lib/fontist/import/font_metadata_extractor.rb +0 -1
- data/lib/fontist/import/formula_builder.rb +0 -6
- data/lib/fontist/import/google/api.rb +0 -9
- data/lib/fontist/import/google/data_sources/base.rb +0 -1
- data/lib/fontist/import/google/data_sources/github.rb +0 -3
- data/lib/fontist/import/google/data_sources/ttf.rb +0 -2
- data/lib/fontist/import/google/data_sources/vf.rb +0 -2
- data/lib/fontist/import/google/data_sources/woff2.rb +0 -2
- data/lib/fontist/import/google/data_sources.rb +13 -0
- data/lib/fontist/import/google/font_database.rb +0 -10
- data/lib/fontist/import/google/metadata_adapter.rb +0 -1
- data/lib/fontist/import/google/models/font_family.rb +0 -1
- data/lib/fontist/import/google/models/metadata.rb +1 -9
- data/lib/fontist/import/google/models/source_metadata.rb +0 -1
- data/lib/fontist/import/google/models.rb +16 -0
- data/lib/fontist/import/google.rb +7 -2
- data/lib/fontist/import/google_fonts_importer.rb +0 -5
- data/lib/fontist/import/google_import.rb +1 -8
- data/lib/fontist/import/helpers.rb +8 -0
- data/lib/fontist/import/macos.rb +0 -6
- data/lib/fontist/import/manual_formula_builder.rb +0 -2
- data/lib/fontist/import/models.rb +7 -0
- data/lib/fontist/import/otf/font_file.rb +0 -2
- data/lib/fontist/import/otf.rb +7 -0
- data/lib/fontist/import/recursive_extraction.rb +0 -5
- data/lib/fontist/import/sil_import.rb +0 -3
- data/lib/fontist/import/upgrade_formulas.rb +1 -11
- data/lib/fontist/import.rb +23 -0
- data/lib/fontist/import_cli.rb +0 -9
- data/lib/fontist/index.rb +0 -4
- data/lib/fontist/index_cli.rb +0 -2
- data/lib/fontist/indexes/base_font_collection_index.rb +0 -1
- data/lib/fontist/indexes/default_family_font_index.rb +0 -2
- data/lib/fontist/indexes/directory_snapshot.rb +0 -2
- data/lib/fontist/indexes/filename_index.rb +0 -2
- data/lib/fontist/indexes/font_index.rb +0 -3
- data/lib/fontist/indexes/fontist_index.rb +0 -2
- data/lib/fontist/indexes/incremental_index_updater.rb +0 -4
- data/lib/fontist/indexes/preferred_family_font_index.rb +0 -2
- data/lib/fontist/indexes/system_index.rb +0 -2
- data/lib/fontist/indexes/user_index.rb +0 -2
- data/lib/fontist/indexes.rb +18 -0
- data/lib/fontist/install_location.rb +0 -4
- data/lib/fontist/install_locations/fontist_location.rb +0 -2
- data/lib/fontist/install_locations/system_location.rb +0 -2
- data/lib/fontist/install_locations/user_location.rb +0 -2
- data/lib/fontist/install_locations.rb +8 -0
- data/lib/fontist/macos/catalog/asset.rb +0 -2
- data/lib/fontist/macos/catalog/base_parser.rb +0 -1
- data/lib/fontist/macos/catalog/catalog_manager.rb +0 -6
- data/lib/fontist/macos/catalog/font3_parser.rb +0 -2
- data/lib/fontist/macos/catalog/font4_parser.rb +0 -2
- data/lib/fontist/macos/catalog/font5_parser.rb +0 -2
- data/lib/fontist/macos/catalog/font6_parser.rb +0 -2
- data/lib/fontist/macos/catalog/font7_parser.rb +0 -2
- data/lib/fontist/macos/catalog/font8_parser.rb +0 -2
- data/lib/fontist/macos/catalog.rb +15 -0
- data/lib/fontist/macos.rb +5 -0
- data/lib/fontist/macos_import_source.rb +0 -2
- data/lib/fontist/manifest_request.rb +0 -1
- data/lib/fontist/manifest_response.rb +0 -1
- data/lib/fontist/resources.rb +7 -0
- data/lib/fontist/sil_import_source.rb +0 -2
- data/lib/fontist/system_font.rb +0 -2
- data/lib/fontist/system_index.rb +0 -4
- data/lib/fontist/utils/cache.rb +0 -2
- data/lib/fontist/utils/downloader.rb +0 -4
- data/lib/fontist/utils.rb +10 -8
- data/lib/fontist/validate_cli.rb +0 -4
- data/lib/fontist/validator.rb +0 -2
- data/lib/fontist/version.rb +1 -1
- data/lib/fontist.rb +82 -36
- metadata +19 -16
data/lib/fontist/system_font.rb
CHANGED
data/lib/fontist/system_index.rb
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
require_relative "font_file"
|
|
2
|
-
require_relative "collection_file"
|
|
3
1
|
require "paint"
|
|
4
2
|
|
|
5
3
|
module Fontist
|
|
@@ -433,8 +431,6 @@ module Fontist
|
|
|
433
431
|
def extract_font_directories
|
|
434
432
|
# Extract base directories from the paths that will be globbed
|
|
435
433
|
# This uses the actual system configuration it will scan
|
|
436
|
-
require_relative "system_font"
|
|
437
|
-
|
|
438
434
|
os = Fontist::Utils::System.user_os.to_s
|
|
439
435
|
templates = SystemFont.system_config["system"][os]["paths"]
|
|
440
436
|
|
data/lib/fontist/utils/cache.rb
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
require "lutaml/model"
|
|
2
2
|
require "marcel"
|
|
3
|
-
require_relative "locking"
|
|
4
3
|
|
|
5
4
|
module Fontist
|
|
6
5
|
module Utils
|
|
@@ -189,7 +188,6 @@ module Fontist
|
|
|
189
188
|
|
|
190
189
|
def response_to_filename(source)
|
|
191
190
|
if File.extname(source.original_filename).empty? && source.content_type
|
|
192
|
-
require "marcel"
|
|
193
191
|
ext = extension_from_mime(source.content_type)
|
|
194
192
|
return "#{source.original_filename}.#{ext}" if ext
|
|
195
193
|
end
|
data/lib/fontist/utils.rb
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
require_relative "utils/system"
|
|
2
|
-
require_relative "utils/file_magic"
|
|
3
|
-
require_relative "utils/locking"
|
|
4
|
-
require_relative "utils/downloader"
|
|
5
|
-
require_relative "utils/cache"
|
|
6
|
-
require_relative "utils/ui"
|
|
7
|
-
require_relative "utils/file_ops"
|
|
8
|
-
|
|
9
1
|
module Fontist
|
|
10
2
|
module Utils
|
|
3
|
+
autoload :Cache, "#{__dir__}/utils/cache"
|
|
4
|
+
autoload :Downloader, "#{__dir__}/utils/downloader"
|
|
5
|
+
autoload :FileMagic, "#{__dir__}/utils/file_magic"
|
|
6
|
+
autoload :FileOps, "#{__dir__}/utils/file_ops"
|
|
7
|
+
autoload :GitHubClient, "#{__dir__}/utils/github_client"
|
|
8
|
+
autoload :GitHubUrl, "#{__dir__}/utils/github_url"
|
|
9
|
+
autoload :Locking, "#{__dir__}/utils/locking"
|
|
10
|
+
autoload :System, "#{__dir__}/utils/system"
|
|
11
|
+
autoload :UI, "#{__dir__}/utils/ui"
|
|
12
|
+
|
|
11
13
|
# Converts a glob pattern to case-insensitive by replacing each
|
|
12
14
|
# alphabetic character with a character class [aA]
|
|
13
15
|
#
|
data/lib/fontist/validate_cli.rb
CHANGED
data/lib/fontist/validator.rb
CHANGED
data/lib/fontist/version.rb
CHANGED
data/lib/fontist.rb
CHANGED
|
@@ -1,14 +1,95 @@
|
|
|
1
1
|
require "down"
|
|
2
2
|
require "digest"
|
|
3
3
|
require "singleton"
|
|
4
|
+
require "lutaml/model"
|
|
4
5
|
|
|
5
6
|
require_relative "fontist/errors"
|
|
6
7
|
require_relative "fontist/version"
|
|
7
|
-
require_relative "fontist/cache
|
|
8
|
+
require_relative "fontist/cache"
|
|
8
9
|
require_relative "fontist/memoizable"
|
|
9
10
|
require_relative "fontist/path_scanning"
|
|
11
|
+
require_relative "fontist/utils"
|
|
10
12
|
|
|
11
13
|
module Fontist
|
|
14
|
+
# Core classes
|
|
15
|
+
autoload :Config, "#{__dir__}/fontist/config"
|
|
16
|
+
autoload :Font, "#{__dir__}/fontist/font"
|
|
17
|
+
autoload :FontCollection, "#{__dir__}/fontist/font_collection"
|
|
18
|
+
autoload :FontFile, "#{__dir__}/fontist/font_file"
|
|
19
|
+
autoload :FontInstaller, "#{__dir__}/fontist/font_installer"
|
|
20
|
+
autoload :FontModel, "#{__dir__}/fontist/font_model"
|
|
21
|
+
autoload :FontPath, "#{__dir__}/fontist/font_path"
|
|
22
|
+
autoload :FontStyle, "#{__dir__}/fontist/font_style"
|
|
23
|
+
autoload :Fontconfig, "#{__dir__}/fontist/fontconfig"
|
|
24
|
+
autoload :Formula, "#{__dir__}/fontist/formula"
|
|
25
|
+
autoload :FormulaCollection, "#{__dir__}/fontist/formula"
|
|
26
|
+
autoload :FormulaPicker, "#{__dir__}/fontist/formula_picker"
|
|
27
|
+
autoload :FormulaSuggestion, "#{__dir__}/fontist/formula_suggestion"
|
|
28
|
+
autoload :Helpers, "#{__dir__}/fontist/helpers"
|
|
29
|
+
autoload :Import, "#{__dir__}/fontist/import"
|
|
30
|
+
autoload :ImportSource, "#{__dir__}/fontist/import_source"
|
|
31
|
+
autoload :InstallLocation, "#{__dir__}/fontist/install_location"
|
|
32
|
+
autoload :StyleVersion, "#{__dir__}/fontist/style_version"
|
|
33
|
+
autoload :Update, "#{__dir__}/fontist/update"
|
|
34
|
+
|
|
35
|
+
# Index classes
|
|
36
|
+
autoload :Index, "#{__dir__}/fontist/index"
|
|
37
|
+
autoload :IndexEntry, "#{__dir__}/fontist/index"
|
|
38
|
+
autoload :IndexStats, "#{__dir__}/fontist/system_index"
|
|
39
|
+
autoload :SystemIndexFont, "#{__dir__}/fontist/system_index"
|
|
40
|
+
autoload :SystemIndexFontCollection, "#{__dir__}/fontist/system_index"
|
|
41
|
+
autoload :SystemIndex, "#{__dir__}/fontist/system_index"
|
|
42
|
+
|
|
43
|
+
# Data models
|
|
44
|
+
autoload :CollectionFile, "#{__dir__}/fontist/collection_file"
|
|
45
|
+
autoload :Extract, "#{__dir__}/fontist/extract"
|
|
46
|
+
autoload :ExtractOptions, "#{__dir__}/fontist/extract"
|
|
47
|
+
autoload :Resource, "#{__dir__}/fontist/formula"
|
|
48
|
+
autoload :ResourceCollection, "#{__dir__}/fontist/formula"
|
|
49
|
+
|
|
50
|
+
# Font sources
|
|
51
|
+
autoload :GoogleImportSource, "#{__dir__}/fontist/google_import_source"
|
|
52
|
+
autoload :MacosImportSource, "#{__dir__}/fontist/macos_import_source"
|
|
53
|
+
autoload :SilImportSource, "#{__dir__}/fontist/sil_import_source"
|
|
54
|
+
autoload :MacosFrameworkMetadata, "#{__dir__}/fontist/macos_framework_metadata"
|
|
55
|
+
|
|
56
|
+
# Manifest classes
|
|
57
|
+
autoload :Manifest, "#{__dir__}/fontist/manifest"
|
|
58
|
+
autoload :ManifestFont, "#{__dir__}/fontist/manifest"
|
|
59
|
+
autoload :ManifestRequest, "#{__dir__}/fontist/manifest_request"
|
|
60
|
+
autoload :ManifestRequestFont, "#{__dir__}/fontist/manifest_request"
|
|
61
|
+
autoload :ManifestResponse, "#{__dir__}/fontist/manifest_response"
|
|
62
|
+
autoload :ManifestResponseFont, "#{__dir__}/fontist/manifest_response"
|
|
63
|
+
autoload :ManifestResponseFontStyle, "#{__dir__}/fontist/manifest_response"
|
|
64
|
+
|
|
65
|
+
# System
|
|
66
|
+
autoload :Info, "#{__dir__}/fontist/repo"
|
|
67
|
+
autoload :Repo, "#{__dir__}/fontist/repo"
|
|
68
|
+
autoload :SystemFont, "#{__dir__}/fontist/system_font"
|
|
69
|
+
|
|
70
|
+
# CLI
|
|
71
|
+
autoload :CLI, "#{__dir__}/fontist/cli"
|
|
72
|
+
autoload :CacheCLI, "#{__dir__}/fontist/cache_cli"
|
|
73
|
+
autoload :ConfigCLI, "#{__dir__}/fontist/config_cli"
|
|
74
|
+
autoload :FontconfigCLI, "#{__dir__}/fontist/fontconfig_cli"
|
|
75
|
+
autoload :ImportCLI, "#{__dir__}/fontist/import_cli"
|
|
76
|
+
autoload :IndexCLI, "#{__dir__}/fontist/index_cli"
|
|
77
|
+
autoload :ManifestCLI, "#{__dir__}/fontist/manifest_cli"
|
|
78
|
+
autoload :RepoCLI, "#{__dir__}/fontist/repo_cli"
|
|
79
|
+
autoload :ThorExt, "#{__dir__}/fontist/cli/thor_ext"
|
|
80
|
+
autoload :Validation, "#{__dir__}/fontist/validation"
|
|
81
|
+
autoload :ValidationReport, "#{__dir__}/fontist/validation"
|
|
82
|
+
autoload :ValidationCache, "#{__dir__}/fontist/validation"
|
|
83
|
+
autoload :FontValidationResult, "#{__dir__}/fontist/validation"
|
|
84
|
+
autoload :Validator, "#{__dir__}/fontist/validator"
|
|
85
|
+
autoload :ValidateCLI, "#{__dir__}/fontist/validate_cli"
|
|
86
|
+
|
|
87
|
+
# Namespace modules
|
|
88
|
+
autoload :Indexes, "#{__dir__}/fontist/indexes"
|
|
89
|
+
autoload :InstallLocations, "#{__dir__}/fontist/install_locations"
|
|
90
|
+
autoload :Resources, "#{__dir__}/fontist/resources"
|
|
91
|
+
autoload :Macos, "#{__dir__}/fontist/macos"
|
|
92
|
+
|
|
12
93
|
def self.ui
|
|
13
94
|
Fontist::Utils::UI
|
|
14
95
|
end
|
|
@@ -196,38 +277,3 @@ module Fontist
|
|
|
196
277
|
true
|
|
197
278
|
end
|
|
198
279
|
end
|
|
199
|
-
|
|
200
|
-
require_relative "fontist/repo"
|
|
201
|
-
require_relative "fontist/font"
|
|
202
|
-
require_relative "fontist/formula"
|
|
203
|
-
require_relative "fontist/system_font"
|
|
204
|
-
require_relative "fontist/manifest"
|
|
205
|
-
require_relative "fontist/manifest_response"
|
|
206
|
-
require_relative "fontist/manifest_request"
|
|
207
|
-
require_relative "fontist/helpers"
|
|
208
|
-
require_relative "fontist/config"
|
|
209
|
-
require_relative "fontist/update"
|
|
210
|
-
require_relative "fontist/index"
|
|
211
|
-
require_relative "fontist/indexes/incremental_scanner"
|
|
212
|
-
require_relative "fontist/indexes/directory_snapshot"
|
|
213
|
-
require_relative "fontist/indexes/directory_change"
|
|
214
|
-
require_relative "fontist/indexes/incremental_index_updater"
|
|
215
|
-
require_relative "fontist/indexes/font_index"
|
|
216
|
-
require_relative "fontist/indexes/filename_index"
|
|
217
|
-
require_relative "fontist/indexes/fontist_index"
|
|
218
|
-
require_relative "fontist/indexes/user_index"
|
|
219
|
-
require_relative "fontist/indexes/system_index"
|
|
220
|
-
require_relative "fontist/cli"
|
|
221
|
-
require_relative "fontist/font_installer"
|
|
222
|
-
require_relative "fontist/fontconfig"
|
|
223
|
-
require_relative "fontist/formula_picker"
|
|
224
|
-
require_relative "fontist/formula_suggestion"
|
|
225
|
-
require_relative "fontist/extract"
|
|
226
|
-
require_relative "fontist/font_style"
|
|
227
|
-
require_relative "fontist/font_collection"
|
|
228
|
-
require_relative "fontist/import"
|
|
229
|
-
require_relative "fontist/import_source"
|
|
230
|
-
require_relative "fontist/macos_import_source"
|
|
231
|
-
require_relative "fontist/google_import_source"
|
|
232
|
-
require_relative "fontist/sil_import_source"
|
|
233
|
-
require_relative "fontist/macos_framework_metadata"
|
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: 2.1.
|
|
4
|
+
version: 2.1.5
|
|
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-03-
|
|
11
|
+
date: 2026-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: down
|
|
@@ -120,20 +120,6 @@ dependencies:
|
|
|
120
120
|
- - "~>"
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
122
|
version: '0.7'
|
|
123
|
-
- !ruby/object:Gem::Dependency
|
|
124
|
-
name: lutaml-xsd
|
|
125
|
-
requirement: !ruby/object:Gem::Requirement
|
|
126
|
-
requirements:
|
|
127
|
-
- - "~>"
|
|
128
|
-
- !ruby/object:Gem::Version
|
|
129
|
-
version: '1.0'
|
|
130
|
-
type: :runtime
|
|
131
|
-
prerelease: false
|
|
132
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
133
|
-
requirements:
|
|
134
|
-
- - "~>"
|
|
135
|
-
- !ruby/object:Gem::Version
|
|
136
|
-
version: '1.0'
|
|
137
123
|
- !ruby/object:Gem::Dependency
|
|
138
124
|
name: marcel
|
|
139
125
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -334,7 +320,12 @@ files:
|
|
|
334
320
|
- docs/guide/how-it-works.md
|
|
335
321
|
- docs/guide/index.md
|
|
336
322
|
- docs/guide/installation.md
|
|
323
|
+
- docs/guide/maintainer/import.md
|
|
324
|
+
- docs/guide/maintainer/index.md
|
|
337
325
|
- docs/guide/manifests.md
|
|
326
|
+
- docs/guide/platforms/index.md
|
|
327
|
+
- docs/guide/platforms/macos.md
|
|
328
|
+
- docs/guide/platforms/windows.md
|
|
338
329
|
- docs/guide/proxy.md
|
|
339
330
|
- docs/guide/quick-start.md
|
|
340
331
|
- docs/guide/why.md
|
|
@@ -357,6 +348,7 @@ files:
|
|
|
357
348
|
- formula_index.yml
|
|
358
349
|
- google-fonts-multi-format-usage.md
|
|
359
350
|
- lib/fontist.rb
|
|
351
|
+
- lib/fontist/cache.rb
|
|
360
352
|
- lib/fontist/cache/manager.rb
|
|
361
353
|
- lib/fontist/cache/store.rb
|
|
362
354
|
- lib/fontist/cache_cli.rb
|
|
@@ -386,6 +378,7 @@ files:
|
|
|
386
378
|
- lib/fontist/import.rb
|
|
387
379
|
- lib/fontist/import/convert_formulas.rb
|
|
388
380
|
- lib/fontist/import/create_formula.rb
|
|
381
|
+
- lib/fontist/import/files.rb
|
|
389
382
|
- lib/fontist/import/files/collection_file.rb
|
|
390
383
|
- lib/fontist/import/files/font_detector.rb
|
|
391
384
|
- lib/fontist/import/font_metadata_extractor.rb
|
|
@@ -395,6 +388,7 @@ files:
|
|
|
395
388
|
- lib/fontist/import/formula_serializer.rb
|
|
396
389
|
- lib/fontist/import/google.rb
|
|
397
390
|
- lib/fontist/import/google/api.rb
|
|
391
|
+
- lib/fontist/import/google/data_sources.rb
|
|
398
392
|
- lib/fontist/import/google/data_sources/base.rb
|
|
399
393
|
- lib/fontist/import/google/data_sources/github.rb
|
|
400
394
|
- lib/fontist/import/google/data_sources/ttf.rb
|
|
@@ -404,6 +398,7 @@ files:
|
|
|
404
398
|
- lib/fontist/import/google/metadata.proto
|
|
405
399
|
- lib/fontist/import/google/metadata_adapter.rb
|
|
406
400
|
- lib/fontist/import/google/metadata_parser.rb
|
|
401
|
+
- lib/fontist/import/google/models.rb
|
|
407
402
|
- lib/fontist/import/google/models/axis.rb
|
|
408
403
|
- lib/fontist/import/google/models/axis_metadata.rb
|
|
409
404
|
- lib/fontist/import/google/models/file_metadata.rb
|
|
@@ -414,13 +409,16 @@ files:
|
|
|
414
409
|
- lib/fontist/import/google/models/source_metadata.rb
|
|
415
410
|
- lib/fontist/import/google_fonts_importer.rb
|
|
416
411
|
- lib/fontist/import/google_import.rb
|
|
412
|
+
- lib/fontist/import/helpers.rb
|
|
417
413
|
- lib/fontist/import/helpers/hash_helper.rb
|
|
418
414
|
- lib/fontist/import/helpers/system_helper.rb
|
|
419
415
|
- lib/fontist/import/import_display.rb
|
|
420
416
|
- lib/fontist/import/macos.rb
|
|
421
417
|
- lib/fontist/import/macos/macos_license.txt
|
|
422
418
|
- lib/fontist/import/manual_formula_builder.rb
|
|
419
|
+
- lib/fontist/import/models.rb
|
|
423
420
|
- lib/fontist/import/models/font_metadata.rb
|
|
421
|
+
- lib/fontist/import/otf.rb
|
|
424
422
|
- lib/fontist/import/otf/font_file.rb
|
|
425
423
|
- lib/fontist/import/recursive_extraction.rb
|
|
426
424
|
- lib/fontist/import/sil_import.rb
|
|
@@ -431,6 +429,7 @@ files:
|
|
|
431
429
|
- lib/fontist/import_source.rb
|
|
432
430
|
- lib/fontist/index.rb
|
|
433
431
|
- lib/fontist/index_cli.rb
|
|
432
|
+
- lib/fontist/indexes.rb
|
|
434
433
|
- lib/fontist/indexes/base_font_collection_index.rb
|
|
435
434
|
- lib/fontist/indexes/default_family_font_index.rb
|
|
436
435
|
- lib/fontist/indexes/directory_change.rb
|
|
@@ -446,10 +445,13 @@ files:
|
|
|
446
445
|
- lib/fontist/indexes/system_index.rb
|
|
447
446
|
- lib/fontist/indexes/user_index.rb
|
|
448
447
|
- lib/fontist/install_location.rb
|
|
448
|
+
- lib/fontist/install_locations.rb
|
|
449
449
|
- lib/fontist/install_locations/base_location.rb
|
|
450
450
|
- lib/fontist/install_locations/fontist_location.rb
|
|
451
451
|
- lib/fontist/install_locations/system_location.rb
|
|
452
452
|
- lib/fontist/install_locations/user_location.rb
|
|
453
|
+
- lib/fontist/macos.rb
|
|
454
|
+
- lib/fontist/macos/catalog.rb
|
|
453
455
|
- lib/fontist/macos/catalog/asset.rb
|
|
454
456
|
- lib/fontist/macos/catalog/base_parser.rb
|
|
455
457
|
- lib/fontist/macos/catalog/catalog_manager.rb
|
|
@@ -469,6 +471,7 @@ files:
|
|
|
469
471
|
- lib/fontist/path_scanning.rb
|
|
470
472
|
- lib/fontist/repo.rb
|
|
471
473
|
- lib/fontist/repo_cli.rb
|
|
474
|
+
- lib/fontist/resources.rb
|
|
472
475
|
- lib/fontist/resources/apple_cdn_resource.rb
|
|
473
476
|
- lib/fontist/resources/archive_resource.rb
|
|
474
477
|
- lib/fontist/resources/google_resource.rb
|