-
Notifications
You must be signed in to change notification settings - Fork 0
/
extract_ttc.gemspec
34 lines (27 loc) · 1.26 KB
/
extract_ttc.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require_relative "lib/extract_ttc/version"
Gem::Specification.new do |spec|
spec.name = "extract_ttc"
spec.version = ExtractTtc::VERSION
spec.authors = ["Ribose Inc."]
spec.email = ["[email protected]"]
spec.summary = "Extract TTC file to TTF files"
spec.description = "Extract font collection to separate font files"
spec.homepage = "https://github.com/fontist/extract_ttc"
spec.license = "BSD-3-Clause"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/fontist/extract_ttc"
spec.metadata["changelog_uri"] = "https://github.com/fontist/extract_ttc"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`
.split("\x0").reject { |f| f.match(%r{^(bin|.github|test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "bundler", "~> 2.3", ">= 2.3.22"
spec.add_runtime_dependency "ffi", "~> 1.0"
spec.add_runtime_dependency "rake", "~> 13"
spec.extensions << "ext/stripttc/extconf.rb"
spec.metadata["rubygems_mfa_required"] = "false"
end