internator 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/bin/internator +0 -0
- data/internator.gemspec +6 -2
- data/lib/internator/version.rb +1 -1
- metadata +36 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 508b98001145212b3564c55c7dfaff2b57bf429765821aac7dd60573a7da460f
|
4
|
+
data.tar.gz: f772d59ee613bd395c88fd1adc63cb421a2786296c40d457eca3fb01ad14a1c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a97dc5c4f7e5be5a2ec332275573d6576da0f53e708c643f53c3f73da9e03a278ce037f498c0299bb10c5e4108629ee299552b8cabc4b72f11c9068be7ee7be
|
7
|
+
data.tar.gz: da6035798511857c09f7aadb85d78572f00fea31bc26883612dad4154c406693e363c29131c02079c76292021af65ceaa3fe9c6ab5cd329ea01347d5ab45f8c3
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[](https://badge.fury.io/rb/internator)
|
2
|
+
|
1
3
|
# Internator
|
2
4
|
|
3
5
|
Internator is a Ruby-based CLI tool that automates iterative pull request improvements using OpenAI's Codex. It cycles through objectives, makes incremental changes, automatically commits and pushes each update, and optionally waits between iterations.
|
@@ -41,3 +43,7 @@ set-environment -g OPENAI_API_KEY "#{ENV:OPENAI_API_KEY}"
|
|
41
43
|
## Contributing
|
42
44
|
|
43
45
|
Feel free to open issues or submit pull requests.
|
46
|
+
|
47
|
+
## License
|
48
|
+
|
49
|
+
Internator is released under the MIT License. See the [LICENSE](LICENSE) file for details.
|
data/bin/internator
CHANGED
File without changes
|
data/internator.gemspec
CHANGED
@@ -7,11 +7,15 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.email = ["clausrybnic@gmail.com"]
|
8
8
|
|
9
9
|
spec.summary = "CLI tool that automates iterative pull request improvements using OpenAI's Codex"
|
10
|
-
spec.description = "Internator cycles through objectives, makes incremental changes, commits
|
11
|
-
spec.homepage = "https://github.com/
|
10
|
+
spec.description = "Internator is a Ruby-based CLI tool that automates iterative pull request improvements using OpenAI's Codex. It cycles through objectives, makes incremental changes, automatically commits and pushes each update, and optionally waits between iterations."
|
11
|
+
spec.homepage = "https://github.com/AlexLarra/internator"
|
12
12
|
spec.license = "MIT"
|
13
13
|
|
14
14
|
spec.files = Dir.glob("lib/**/*.rb") + ["README.md", "LICENSE", "internator.gemspec", "bin/internator"]
|
15
15
|
spec.executables = ["internator"]
|
16
16
|
spec.require_paths = ["lib"]
|
17
|
+
|
18
|
+
# Development dependencies for building and releasing the gem
|
19
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
20
|
+
spec.add_development_dependency "rake"
|
17
21
|
end
|
data/lib/internator/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,47 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: internator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AlexLarra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
11
|
+
date: 2025-06-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Internator is a Ruby-based CLI tool that automates iterative pull request
|
42
|
+
improvements using OpenAI's Codex. It cycles through objectives, makes incremental
|
43
|
+
changes, automatically commits and pushes each update, and optionally waits between
|
44
|
+
iterations.
|
15
45
|
email:
|
16
46
|
- clausrybnic@gmail.com
|
17
47
|
executables:
|
@@ -27,7 +57,7 @@ files:
|
|
27
57
|
- lib/internator/cli.rb
|
28
58
|
- lib/internator/codex_service.rb
|
29
59
|
- lib/internator/version.rb
|
30
|
-
homepage: https://github.com/
|
60
|
+
homepage: https://github.com/AlexLarra/internator
|
31
61
|
licenses:
|
32
62
|
- MIT
|
33
63
|
metadata: {}
|