dotcodegen 0.1.0 → 0.1.3
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/dotcodegen.gemspec +1 -3
- data/exe/codegen +9 -0
- data/lib/dotcodegen/version.rb +1 -1
- metadata +4 -35
- data/.codegen/instructions/ruby.md +0 -145
- data/.rspec +0 -3
- data/.rubocop.yml +0 -13
- data/.simplecov +0 -6
- data/Rakefile +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0354938621e705831e5f3f4a327b8da9e10901519e8d90181592f33dc584a53
|
4
|
+
data.tar.gz: 04631eaca2b2cfff73bec57958ea6f00e2d6741657b8d95638529fb60a42bd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c83a1aba762c27be35068bc3148b32016b2505a4b63c1f1d8707685cf00654e09fdff4b8b26025972304ca304468ac493547c8af807025ec49725bae4b4d3624
|
7
|
+
data.tar.gz: df25ea36901d9ac9b94da9bf1f18be5cd1fb3b76122377581a2b44dbe6257dc101f1d0a5056be92203e9470902664538a5eef7c0fee6071019458e6cadd85a4c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
# [0.1.3] - 2024-03-10
|
4
|
+
|
5
|
+
- Move the execution to a /exe/codegen file. exe/run was removed.
|
6
|
+
|
7
|
+
## [0.1.1] - 2024-03-10
|
8
|
+
|
9
|
+
- Fix bug where the gemspec was excluding the `lib` directory from the gem. ([#1](https://github.com/ferrucc-io/dotcodegen/pull/1))
|
10
|
+
|
3
11
|
## [0.1.0] - 2024-03-10
|
4
12
|
|
5
13
|
- Initial release
|
data/README.md
CHANGED
data/dotcodegen.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.files = Dir.chdir(__dir__) do
|
24
24
|
`git ls-files -z`.split("\x0").reject do |f|
|
25
25
|
(File.expand_path(f) == __FILE__) ||
|
26
|
-
f.start_with?(*%w[bin/
|
26
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github .codegen .rspec .rubocop.yml .simplecov appveyor Gemfile Rakefile])
|
27
27
|
end
|
28
28
|
end
|
29
29
|
spec.bindir = 'exe'
|
@@ -32,8 +32,6 @@ Gem::Specification.new do |spec|
|
|
32
32
|
|
33
33
|
spec.add_dependency 'dotenv'
|
34
34
|
spec.add_dependency 'front_matter_parser'
|
35
|
-
spec.add_dependency 'optparse'
|
36
|
-
spec.add_dependency 'ostruct'
|
37
35
|
spec.add_dependency 'ruby-openai'
|
38
36
|
|
39
37
|
# For more information and examples about making a new gem, check out our
|
data/exe/codegen
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# The program gets in as an argument the full file path and the matchers config file
|
5
|
+
# Usage: exe/codegen client/app/components/feature.tsx --openai_key sk42424242
|
6
|
+
|
7
|
+
require_relative '../lib/dotcodegen/cli'
|
8
|
+
|
9
|
+
Dotcodegen::CLI.run(ARGV)
|
data/lib/dotcodegen/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dotcodegen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ferruccio Balestreri
|
@@ -38,34 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: optparse
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: ostruct
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
41
|
- !ruby/object:Gem::Dependency
|
70
42
|
name: ruby-openai
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,23 +59,20 @@ description: Generate tests for your code using LLMs. This gem is a CLI tool tha
|
|
87
59
|
progress.
|
88
60
|
email:
|
89
61
|
- ferruccio.balestreri@gmail.com
|
90
|
-
executables:
|
62
|
+
executables:
|
63
|
+
- codegen
|
91
64
|
extensions: []
|
92
65
|
extra_rdoc_files: []
|
93
66
|
files:
|
94
|
-
- ".codegen/instructions/ruby.md"
|
95
67
|
- ".env.example"
|
96
|
-
- ".rspec"
|
97
|
-
- ".rubocop.yml"
|
98
|
-
- ".simplecov"
|
99
68
|
- CHANGELOG.md
|
100
69
|
- LICENSE.txt
|
101
70
|
- README.md
|
102
|
-
- Rakefile
|
103
71
|
- config/default/.codegen/instructions/react-vitest.md
|
104
72
|
- config/default/.codegen/instructions/rspec-rails.md
|
105
73
|
- docs/configuration.md
|
106
74
|
- dotcodegen.gemspec
|
75
|
+
- exe/codegen
|
107
76
|
- lib/dotcodegen.rb
|
108
77
|
- lib/dotcodegen/cli.rb
|
109
78
|
- lib/dotcodegen/init.rb
|
@@ -1,145 +0,0 @@
|
|
1
|
-
---
|
2
|
-
regex: 'lib/.*\.rb'
|
3
|
-
root_path: 'lib'
|
4
|
-
test_root_path: 'spec'
|
5
|
-
test_file_suffix: '_spec.rb'
|
6
|
-
---
|
7
|
-
|
8
|
-
When writing a test, you should follow these steps:
|
9
|
-
|
10
|
-
1. Avoid typos.
|
11
|
-
2. Avoid things that could be infinite loops.
|
12
|
-
3. This codebase is a Ruby gem, try to follow the conventions of the Ruby community.
|
13
|
-
4. Avoid things that could be security vulnerabilities.
|
14
|
-
5. Keep the codebase clean and easy to understand.
|
15
|
-
6. Use Rspec for tests, don't use any other testing framework.
|
16
|
-
7. Don't include ANY dependencies that are not already in the files you are provided.
|
17
|
-
8. Don't start your tests with ``` or other strings, as your reply will be run as a Ruby file.
|
18
|
-
|
19
|
-
Here's an example of a good test you should reply with:
|
20
|
-
|
21
|
-
```ruby
|
22
|
-
# frozen_string_literal: true
|
23
|
-
|
24
|
-
require 'dotcodegen/test_file_generator'
|
25
|
-
|
26
|
-
RSpec.describe Dotcodegen::TestFileGenerator do
|
27
|
-
let(:file_path) { 'client/app/components/feature.tsx' }
|
28
|
-
let(:api_matcher) do
|
29
|
-
{
|
30
|
-
'regex' => 'api/.*\.rb',
|
31
|
-
'root_path' => 'api/app/',
|
32
|
-
'test_root_path' => 'api/spec/',
|
33
|
-
'test_file_suffix' => '_spec.rb'
|
34
|
-
}
|
35
|
-
end
|
36
|
-
let(:client_matcher) do
|
37
|
-
{
|
38
|
-
'regex' => 'client/app/.*\.tsx',
|
39
|
-
'test_file_suffix' => '.test.tsx'
|
40
|
-
}
|
41
|
-
end
|
42
|
-
let(:matchers) { [api_matcher, client_matcher] }
|
43
|
-
let(:openai_key) { 'test_openai_key' }
|
44
|
-
let(:codegen_instance) { instance_double(Dotcodegen::TestFileGenerator) }
|
45
|
-
|
46
|
-
subject { described_class.new(file_path:, matchers:, openai_key:) }
|
47
|
-
|
48
|
-
describe '#run' do
|
49
|
-
after(:each) { FileUtils.remove_dir('client/', force: true) }
|
50
|
-
let(:file_path) { 'spec/fixtures/feature.tsx' }
|
51
|
-
let(:client_matcher) do
|
52
|
-
{
|
53
|
-
'regex' => 'spec/fixtures/.*\.tsx',
|
54
|
-
'test_file_suffix' => '.test.tsx',
|
55
|
-
'root_path' => 'spec/fixtures/',
|
56
|
-
'test_root_path' => 'tmp/codegen_spec/',
|
57
|
-
'instructions' => 'instructions/react.md'
|
58
|
-
}
|
59
|
-
end
|
60
|
-
|
61
|
-
context 'when test file does not exist' do
|
62
|
-
it 'creates a test file and writes generated code once' do
|
63
|
-
allow(File).to receive(:exist?).with('tmp/codegen_spec/feature.test.tsx').and_return(false)
|
64
|
-
expect(FileUtils).to receive(:mkdir_p).with('tmp/codegen_spec')
|
65
|
-
allow(Dotcodegen::TestCodeGenerator).to receive_message_chain(:new, :generate_test_code).and_return('Mocked generated code')
|
66
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', '').once
|
67
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', 'Mocked generated code').once
|
68
|
-
subject.run
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
context 'when test file already exists' do
|
73
|
-
it 'does not create a test file but writes generated code' do
|
74
|
-
allow(File).to receive(:exist?).with('tmp/codegen_spec/feature.test.tsx').and_return(true)
|
75
|
-
expect(FileUtils).not_to receive(:mkdir_p)
|
76
|
-
allow(Dotcodegen::TestCodeGenerator).to receive_message_chain(:new, :generate_test_code).and_return('Mocked generated code')
|
77
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', 'Mocked generated code').once
|
78
|
-
subject.run
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe '#matcher' do
|
84
|
-
it 'returns the matching regex for the frontend' do
|
85
|
-
expect(subject.matcher).to eq(client_matcher)
|
86
|
-
end
|
87
|
-
|
88
|
-
context 'when file path is a ruby file' do
|
89
|
-
let(:file_path) { 'api/app/models/app.rb' }
|
90
|
-
it 'returns the matching regex for the backend' do
|
91
|
-
expect(subject.matcher).to eq(api_matcher)
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
context 'when there are no matches' do
|
96
|
-
let(:file_path) { 'terraform/models/app.rb' }
|
97
|
-
it 'returns nil' do
|
98
|
-
expect(subject.matcher).to be_nil
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
context 'when file path does not match any regex' do
|
103
|
-
let(:file_path) { 'api/models/app.go' }
|
104
|
-
it 'returns nil' do
|
105
|
-
expect(subject.matcher).to be_nil
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
describe '#test_file_path' do
|
111
|
-
it 'returns the test file path for the frontend' do
|
112
|
-
expect(subject.test_file_path).to eq('client/app/components/feature.test.tsx')
|
113
|
-
end
|
114
|
-
|
115
|
-
context 'when file path is a ruby file' do
|
116
|
-
let(:file_path) { 'api/app/models/app.rb' }
|
117
|
-
it 'returns the test file path for the backend' do
|
118
|
-
expect(subject.test_file_path).to eq('api/spec/models/app_spec.rb')
|
119
|
-
end
|
120
|
-
end
|
121
|
-
end
|
122
|
-
end
|
123
|
-
```
|
124
|
-
|
125
|
-
Here's the skeleton of a test you can start from:
|
126
|
-
|
127
|
-
```ruby
|
128
|
-
# frozen_string_literal: true
|
129
|
-
|
130
|
-
require 'dotcodegen/__file_path__'
|
131
|
-
|
132
|
-
RSpec.describe Dotcodegen::__CLASS_NAME__ do
|
133
|
-
let(:params) do
|
134
|
-
{
|
135
|
-
# Add params here
|
136
|
-
}
|
137
|
-
end
|
138
|
-
subject { described_class.new(params) }
|
139
|
-
|
140
|
-
|
141
|
-
it 'runs' do
|
142
|
-
# Add assertions here
|
143
|
-
end
|
144
|
-
end
|
145
|
-
```
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
data/.simplecov
DELETED