-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternator.gemspec
More file actions
20 lines (16 loc) · 1 KB
/
internator.gemspec
File metadata and controls
20 lines (16 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative "lib/internator/version"
Gem::Specification.new do |spec|
spec.name = "internator"
spec.version = Internator::VERSION
spec.authors = ["AlexLarra"]
spec.email = ["clausrybnic@gmail.com"]
spec.summary = "CLI tool that automates iterative pull request improvements using Opencode"
spec.description = "Internator is a Ruby-based CLI tool that automates iterative pull request improvements using Opencode. It cycles through objectives, makes incremental changes, automatically commits and pushes each update, and optionally waits between iterations."
spec.homepage = "https://github.com/AlexLarra/internator"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*.rb") + ["README.md", "LICENSE", "internator.gemspec", "bin/internator"]
spec.executables = ["internator"]
# Development dependencies for building and releasing the gem
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake"
end