forked from bkuhlmann/xdg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxdg.gemspec
30 lines (24 loc) · 1014 Bytes
/
xdg.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/xdg/identity"
Gem::Specification.new do |spec|
spec.name = XDG::Identity::NAME
spec.version = XDG::Identity::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Brooke Kuhlmann"]
spec.email = ["[email protected]"]
spec.homepage = "https://www.alchemists.io/projects/xdg"
spec.summary = "Provides an implementation of the XDG Base Directory Specification."
spec.license = "Apache-2.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/bkuhlmann/xdg/issues",
"changelog_uri" => "https://www.alchemists.io/projects/xdg/changes.html",
"documentation_uri" => "https://www.alchemists.io/projects/xdg",
"source_code_uri" => "https://github.com/bkuhlmann/xdg"
}
spec.signing_key = Gem.default_key_path
spec.cert_chain = [Gem.default_cert_path]
spec.required_ruby_version = "~> 2.7"
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.require_paths = ["lib"]
end