-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbake-gem-github.gemspec
More file actions
26 lines (24 loc) · 1.09 KB
/
Copy pathbake-gem-github.gemspec
File metadata and controls
26 lines (24 loc) · 1.09 KB
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
# frozen_string_literal: true
require_relative "lib/bake/gem/github/version"
Gem::Specification.new do |spec|
spec.name = "bake-gem-github"
spec.version = Bake::Gem::GitHub::VERSION
spec.summary = "Reviewable GitHub releases for Ruby gems."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.homepage = "https://github.com/socketry/bake-gem-github"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/bake-gem-github/",
"bug_tracker_uri" => "https://github.com/socketry/bake-gem-github/issues",
"changelog_uri" => "https://github.com/socketry/bake-gem-github/blob/main/releases.md",
"source_code_uri" => "https://github.com/socketry/bake-gem-github.git",
}
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/socketry-release.pem")
spec.files = Dir.glob(["{bake,context,lib,templates}/**/*", "*.md", "release.cert"], base: __dir__)
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "bake-gem", ">= 0.15.0"
spec.add_dependency "bake-releases", "~> 0.6"
spec.add_dependency "net-http"
spec.add_dependency "bake", "~> 0.25"
end