mitch-ai 0.2.0 → 0.3.0

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: 43cece7d46ccb8562b4e59077d3410c65b6a7dca8bea53bce56ad9faba217627
4
- data.tar.gz: 9a03e757842974408b2252e037321525ae97dd2d95c4ef0fcc30a78a9a7f082d
3
+ metadata.gz: a6fa3d74a74493a6b77681f54b192381d7f1459ebfd317ad319958307f0af460
4
+ data.tar.gz: 3e41c08bff50e535164b0c6f2edde90f64495be9a96da5204d6a21fb5fe9cb2f
5
5
  SHA512:
6
- metadata.gz: dcbfe671a3e72397a1b63fcd51d4e07849cdf9c2858c8b2981e631e36c4d15ead3205f85cfe7830aca16e44d93c8b89a56925820ed66ea227199a192dc87cd8a
7
- data.tar.gz: 29b6d4defc8913201b5aba6b30f70f5d9189325b28fc35d859ee3d8bb36cd4d15694e5f21dd1b16b6fa4e3d4f4db6722b5892bc27ee034ecaab55fe635278f24
6
+ metadata.gz: bd4b34c1e8c2484f4f2fff3e9ba03c5ac2879aaa22be8b5f9ad03cede9b4a0cecc418d950a906359480a47ca59d45204fe6dfcb137ab9ffa9d744199093b83cf
7
+ data.tar.gz: 64ff2f479b0c15f1e9533846c29b8ef2ab289cf19d9745999c717ab4dc380490ab31dd88a18a241065be666009e9228d0021224a61a82082c1931f8a7fcf0c32
data/exe/mitch-ai ADDED
@@ -0,0 +1,6 @@
1
+ # !/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'mitch_ai'
5
+
6
+ MitchAI::CLI.start(ARGV)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MitchAI
4
- VERSION = '0.2.0'
4
+ VERSION = '0.3.0'
5
5
  end
data/mitch_ai.gemspec CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
23
  end
24
24
 
25
- spec.bindir = 'exe'
26
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
+ spec.bindir = 'exe'
26
+ spec.executables = ['mitch-ai']
27
27
  spec.require_paths = ['lib']
28
28
 
29
29
  # Dependencies
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mitch-ai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Cook
@@ -155,7 +155,7 @@ description: MitchAI is an intelligent CLI tool that leverages artificial intell
155
155
  email:
156
156
  - stevorevo@duck.com
157
157
  executables:
158
- - mitch_ai
158
+ - mitch-ai
159
159
  extensions: []
160
160
  extra_rdoc_files: []
161
161
  files:
@@ -175,7 +175,7 @@ files:
175
175
  - Steep
176
176
  - bin/console
177
177
  - bin/setup
178
- - exe/mitch_ai
178
+ - exe/mitch-ai
179
179
  - lib/mitch_ai.rb
180
180
  - lib/mitch_ai/ai_providers/openai_provider.rb
181
181
  - lib/mitch_ai/analyzers/file_analyzer.rb
data/exe/mitch_ai DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "mitch_ai"
5
-
6
- MitchAI::CLI.start(ARGV)