forked from sferik/x-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
x.gemspec
35 lines (31 loc) · 1.02 KB
/
x.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
require_relative "lib/x/version"
Gem::Specification.new do |spec|
spec.name = "x"
spec.version = X::VERSION
spec.authors = ["Erik Berlin"]
spec.email = ["sferik@gmail.com"]
spec.summary = "A Ruby interface to the X API."
spec.homepage = "https://sferik.github.io/x-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.platform = Gem::Platform::RUBY
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"rubygems_mfa_required" => "true",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/sferik/x-ruby",
"changelog_uri" => "https://github.com/sferik/x-ruby/blob/master/CHANGELOG.md",
"bug_tracker_uri" => "https://github.com/sferik/x-ruby/issues",
"documentation_uri" => "https://rubydoc.info/gems/x/"
}
spec.files = Dir[
"bin/*",
"lib/**/*.rb",
"sig/*.rbs",
"*.md",
"LICENSE.txt"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end