-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-markdown.gemspec
More file actions
45 lines (37 loc) · 1.61 KB
/
git-markdown.gemspec
File metadata and controls
45 lines (37 loc) · 1.61 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
require_relative "lib/git/markdown/version"
Gem::Specification.new do |spec|
spec.name = "git-markdown"
spec.version = GitMarkdown::VERSION
spec.authors = ["Paulo Fidalgo", "Ethos Link"]
spec.summary = "Convert GitHub PRs to Markdown for local AI code review"
spec.description = "A CLI tool that fetches GitHub pull requests and converts them to Markdown format, perfect for local AI assistants like opencode and codex."
spec.homepage = "https://www.ethos-link.com/opensource/git-markdown"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
repo = "https://github.com/ethos-link/git-markdown"
branch = "master"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => repo,
"bug_tracker_uri" => "#{repo}/issues",
"changelog_uri" => "#{repo}/blob/#{branch}/CHANGELOG.md",
"documentation_uri" => "#{repo}/blob/#{branch}/README.md",
"funding_uri" => "https://www.reviato.com/",
"rubygems_mfa_required" => "true"
}
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = "bin"
spec.executables = ["git-markdown"]
spec.require_paths = ["lib"]
spec.add_dependency "thor", "~> 1.0"
spec.add_development_dependency "minitest", "~> 6.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "standard", "~> 1.0"
spec.add_development_dependency "vcr", "~> 6.0"
spec.add_development_dependency "webmock", "~> 3.0"
end