-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtermium.gemspec
37 lines (29 loc) · 1.17 KB
/
termium.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
35
36
37
# frozen_string_literal: true
require_relative "lib/termium/version"
all_files_in_git = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0")
end
Gem::Specification.new do |spec|
spec.name = "termium"
spec.version = Termium::VERSION
spec.authors = ["Ribose"]
spec.email = ["open.source@ribose.com"]
spec.summary =
"Parser for the TERMIUM Plus terminology database of the Government of Canada"
spec.homepage = "https://github.com/glossarist/termium"
spec.license = "BSD-2-Clause"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
# Specify which files should be added to the gem when it is released.
spec.files = all_files_in_git
.reject { |f| f.match(%r{\A(?:test|spec|features|bin|\.)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "glossarist", "~> 2.2"
spec.add_dependency "lutaml-model"
spec.add_dependency "thor"
spec.add_dependency "uuidtools"
end