-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxrb.gemspec
30 lines (21 loc) · 910 Bytes
/
xrb.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
# frozen_string_literal: true
require_relative "lib/xrb/version"
Gem::Specification.new do |spec|
spec.name = "xrb"
spec.version = XRB::VERSION
spec.summary = "A fast native templating system that compiles directly to Ruby code."
spec.authors = ["Samuel Williams", "Adam Daniels", "Cyril Roelandt", "Jean Boussier"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/ioquatix/xrb"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/xrb/",
"funding_uri" => "https://github.com/sponsors/ioquatix",
"source_code_uri" => "https://github.com/ioquatix/xrb.git",
}
spec.files = Dir.glob(["{bake,ext,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.require_paths = ["lib"]
spec.extensions = ["ext/extconf.rb"]
spec.required_ruby_version = ">= 3.1"
end