-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinterscript-maps.gemspec
More file actions
33 lines (29 loc) · 1.13 KB
/
Copy pathinterscript-maps.gemspec
File metadata and controls
33 lines (29 loc) · 1.13 KB
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
INTERSCRIPT_MAPS_VERSION = "2.5.0"
Gem::Specification.new do |spec|
spec.name = "interscript-maps"
spec.version = INTERSCRIPT_MAPS_VERSION
spec.summary = "Interoperable script conversion systems — map data"
spec.description = "Map data package for Interscript interoperable script conversion systems."
spec.authors = ["Ribose Inc."]
spec.email = ["open.source@ribose.com"]
spec.homepage = "https://www.interscript.com"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.3.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/interscript/maps"
spec.metadata["changelog_uri"] = "https://github.com/interscript/maps/releases"
spec.metadata["bug_tracker_uri"] = "https://github.com/interscript/maps/issues"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(__dir__) do
Dir[
"libs/**/*",
"maps/**/*",
"maps-staging/**/*",
"interscript-maps.yaml",
"README*",
"LICENSE*",
"*.gemspec"
].select { |f| File.file?(f) }
end
spec.require_paths = [""]
end