-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexpressir.gemspec
38 lines (29 loc) · 1.24 KB
/
expressir.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
38
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "expressir/version"
Gem::Specification.new do |spec|
spec.name = "expressir"
spec.version = Expressir::VERSION
spec.authors = ["Ribose Inc."]
spec.email = ["[email protected]"]
spec.summary = "EXPRESS parser and toolkit for Ruby"
spec.description = "Expressir (“EXPRESS in Ruby”) is a Ruby parser for EXPRESS and a set of tools for accessing EXPRESS data models."
spec.homepage = "https://github.com/lutaml/expressir"
spec.license = "BSD-2-Clause"
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/expressir/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
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 "liquid"
spec.add_dependency "parslet", "~> 2.0"
spec.add_dependency "thor", "~> 1.0"
end