-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlutaml-xsd.gemspec
37 lines (27 loc) · 1.11 KB
/
lutaml-xsd.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/lutaml/xsd/version"
Gem::Specification.new do |spec|
spec.name = "lutaml-xsd"
spec.version = Lutaml::Xsd::VERSION
spec.authors = ["Ribose Inc."]
spec.email = ["[email protected]"]
spec.summary = "Library for XML Schema Definition (XSD) files"
spec.description = "Parser and builder for XML Schema Definition (XSD) files."
spec.homepage = "https://github.com/lutaml/expressir"
spec.license = "BSD-2-Clause"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
spec.bindir = "exe"
spec.require_paths = ["lib"]
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/lutaml/lutaml-xsd/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end
spec.test_files = `git ls-files -- {spec}/*`.split("\n")
spec.add_dependency "lutaml-model", "~> 0.5"
spec.add_dependency "zeitwerk"
end