dotcodegen 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3df431650d3b7c3736d9f9c8c47b7eb70fae00c78368d21954d5ef139170f4bc
4
- data.tar.gz: 2ba426662ea615dfdce8f7eebee074deb5165072808d08f0c0cc13c54bcdba82
3
+ metadata.gz: c1301e1dd4819dbca49a82b09398c2e109443ba2d7717a57d4cbd816ab72dfe1
4
+ data.tar.gz: 85df9cf9e3206a6749695e377ece1856a70b1694e3f39dd27dbceeb99065d944
5
5
  SHA512:
6
- metadata.gz: 37ad7696e16dbfbdda40ce3b75796bbf1d7b0caa02cc7419283c66d89bf61ba05b0025fc622e6921e1a141dedb2602246602e56c49a6f8479b7d0371d1b883d8
7
- data.tar.gz: 1cdbc250648762a3f688749f944622e83263686eb95b755ba334aacfabed1b3ebb172a74976db87461566577e97482e55a11309b80ec3158a6a9c2dfc179c3ac
6
+ metadata.gz: 74efe685bf58050f77ed20a15e03c72ae7998f6e0b090118154266fdd68403c3ad205cba15f895f9697e4f873f821c0a0a66471ebbe4df44006a39d46b5b53cd
7
+ data.tar.gz: 3776772d1dd589ec7cb6d2c4222123312846991fa325974d25f1d8d955933aa11a523f08f17924e597d75acf7a5229552964805d2f5b62dc6138fc92dba6c46d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2024-03-10
4
+
5
+ - Fix bug where the gemspec was excluding the `lib` directory from the gem. ([#1](https://github.com/ferrucc-io/dotcodegen/pull/1))
6
+
3
7
  ## [0.1.0] - 2024-03-10
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -12,7 +12,7 @@ We're using this tool to speed up writing tests for our monolith at [June](https
12
12
  1. Install our CLI by running:
13
13
 
14
14
  ```bash
15
- brew tap ferrucc-io/dotcodegen
15
+ brew tap ferrucc-io/dotcodegen https://github.com/ferrucc-io/dotcodegen
16
16
  brew install dotcodegen
17
17
  ```
18
18
 
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/ /lib test/ spec/ features/ .git .github appveyor Gemfile])
26
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
27
27
  end
28
28
  end
29
29
  spec.bindir = 'exe'
data/exe/run 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: ruby scripts/create_test_file.rb client/app/components/feature.tsx --openai_key sk42424242
6
+
7
+ require_relative '../lib/dotcodegen/cli'
8
+
9
+ Dotcodegen::CLI.run(ARGV)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dotcodegen
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ferruccio Balestreri
@@ -87,7 +87,8 @@ description: Generate tests for your code using LLMs. This gem is a CLI tool tha
87
87
  progress.
88
88
  email:
89
89
  - ferruccio.balestreri@gmail.com
90
- executables: []
90
+ executables:
91
+ - run
91
92
  extensions: []
92
93
  extra_rdoc_files: []
93
94
  files:
@@ -104,6 +105,7 @@ files:
104
105
  - config/default/.codegen/instructions/rspec-rails.md
105
106
  - docs/configuration.md
106
107
  - dotcodegen.gemspec
108
+ - exe/run
107
109
  - lib/dotcodegen.rb
108
110
  - lib/dotcodegen/cli.rb
109
111
  - lib/dotcodegen/init.rb