commitgpt 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a73fe2965f7f3fedb44a5173fcd2dfb888c909c3ea275bed72ae1474f6bfe7cc
4
+ data.tar.gz: 22388d33280bd6c90a4febff1964eab35b558befc777465374b420567d080e35
5
+ SHA512:
6
+ metadata.gz: 5d0af4dacb622f9c893bafadf5bafe45a48fdd7664a29c804e122ae9cddafea13d7d8a61a0345215cffe6552e15ba4e8e6d0888515a12527b7e79f7305a3e238
7
+ data.tar.gz: bc785e338d404f12f8d6e5b94659ae4aa8dc9301507722ec78b73f7f85ea7824e2e8ce718563fa5a1cf69c1c56d62e0ad8cb8f66646418b56865ebc9a061be4a
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,19 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 160
14
+
15
+ MethodLength:
16
+ Max: 20
17
+
18
+ Metrics/BlockLength:
19
+ Max: 100
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-02-14
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at p.zhang@iot-venture.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in commitgpt.gemspec
6
+ gemspec
7
+
8
+ gem "httparty"
9
+
10
+ gem "rake", "~> 13.0"
11
+
12
+ gem "rspec", "~> 3.0"
13
+
14
+ gem "rubocop", "~> 1.21"
15
+
16
+ gem "thor"
data/Gemfile.lock ADDED
@@ -0,0 +1,66 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ commitgpt (0.1.2)
5
+ httparty (~> 0.18)
6
+ thor (~> 1.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ diff-lcs (1.5.0)
13
+ httparty (0.21.0)
14
+ mini_mime (>= 1.0.0)
15
+ multi_xml (>= 0.5.2)
16
+ mini_mime (1.1.2)
17
+ multi_xml (0.6.0)
18
+ parallel (1.22.1)
19
+ parser (3.1.2.0)
20
+ ast (~> 2.4.1)
21
+ rainbow (3.1.1)
22
+ rake (13.0.6)
23
+ regexp_parser (2.6.1)
24
+ rexml (3.2.5)
25
+ rspec (3.12.0)
26
+ rspec-core (~> 3.12.0)
27
+ rspec-expectations (~> 3.12.0)
28
+ rspec-mocks (~> 3.12.0)
29
+ rspec-core (3.12.0)
30
+ rspec-support (~> 3.12.0)
31
+ rspec-expectations (3.12.0)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.12.0)
34
+ rspec-mocks (3.12.0)
35
+ diff-lcs (>= 1.2.0, < 2.0)
36
+ rspec-support (~> 3.12.0)
37
+ rspec-support (3.12.0)
38
+ rubocop (1.29.1)
39
+ parallel (~> 1.10)
40
+ parser (>= 3.1.0.0)
41
+ rainbow (>= 2.2.2, < 4.0)
42
+ regexp_parser (>= 1.8, < 3.0)
43
+ rexml (>= 3.2.5, < 4.0)
44
+ rubocop-ast (>= 1.17.0, < 2.0)
45
+ ruby-progressbar (~> 1.7)
46
+ unicode-display_width (>= 1.4.0, < 3.0)
47
+ rubocop-ast (1.17.0)
48
+ parser (>= 3.1.1.0)
49
+ ruby-progressbar (1.11.0)
50
+ thor (1.2.1)
51
+ unicode-display_width (1.8.0)
52
+
53
+ PLATFORMS
54
+ arm64-darwin-21
55
+ x86_64-darwin-22
56
+
57
+ DEPENDENCIES
58
+ commitgpt!
59
+ httparty
60
+ rake (~> 13.0)
61
+ rspec (~> 3.0)
62
+ rubocop (~> 1.21)
63
+ thor
64
+
65
+ BUNDLED WITH
66
+ 2.4.4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 ZPVIP
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Peng Zhang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,60 @@
1
+ <div align="center">
2
+ <div>
3
+ <h1 align="center">Commit GPT</h1>
4
+ </div>
5
+ <p>A CLI that writes your git commit messages for you with AI. Never write a commit message again.</p>
6
+ </div>
7
+
8
+ ---
9
+
10
+ ## Installation
11
+ ```bash
12
+ $ gem install commitgpt
13
+ ```
14
+
15
+ ## Usage
16
+ ### API key
17
+ grab your [OpenAI key](https://openai.com/api/) and add it as an env variable.
18
+ ```bash
19
+ $ export OPENAI_API_KEY=sk-xxxxxxxxxxxxxxxx
20
+ ```
21
+ It's recommended to add the first line to your `.zshrc` or `.bashrc` so it persists instead of having to define it in each terminal session.
22
+
23
+ ### aicm
24
+ `aicm` is an abbreviation for `AI commits`, after `git add .` add your file to stage, then use `aicm` to commit with an AI generated commit message.
25
+ ```bash
26
+ $ cd /path/to/your/repo
27
+ $ git add .
28
+ $ aicm
29
+
30
+ ▲ Welcome to AI Commits!
31
+ ▲ Generating your AI commit message...
32
+
33
+ ▲ Commit message: git commit -am "Update README.md with contribution instructions and OpenAI API key instructions."
34
+
35
+ ▲ Do you want to commit this message? [y/n]
36
+ [main c082637] Update README.md with contribution instructions and OpenAI API key instructions.
37
+ 4 files changed, 24 insertions(+), 19 deletions(-)
38
+ ```
39
+
40
+ ## Special Thanks
41
+ I used chatGPT to convert `AICommits`(JS) to `CommitGPT`(Ruby). Thanks to [https://github.com/Nutlope/aicommits](https://github.com/Nutlope/aicommits)
42
+
43
+ ## How it works
44
+ This CLI tool runs a git diff command to grab all the latest changes, sends this to OpenAI's GPT-3, then returns the AI generated commit message. I also want to note that it does cost money since GPT-3 generations aren't free. However, OpenAI gives folks $18 of free credits and commit message generations are cheap so it should be free for a long time.
45
+
46
+ ## Limitations
47
+ Only supports git diffs of up to 200 lines of code for now
48
+ The generated commit message can't be edited yet, but you can choose `n` and copy the commit command and edit it manually.
49
+
50
+ ## Contributing
51
+
52
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ZPVIP/commitgpt. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ZPVIP/commitgpt/blob/main/CODE_OF_CONDUCT.md).
53
+
54
+ ## License
55
+
56
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
57
+
58
+ ## Code of Conduct
59
+
60
+ Everyone interacting in the CommitGpt project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ZPVIP/commitgpt/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/bin/aicm ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "commitgpt/cli"
5
+ CommitGpt::CLI.start
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "thor"
4
+ require "commitgpt/commit_ai"
5
+
6
+ module CommitGpt
7
+ # CommitGpt CLI
8
+ class CLI < Thor
9
+ default_task :aicm
10
+
11
+ desc "aicm", "AI commits for you!"
12
+ def aicm
13
+ CommitGpt::CommitAi.new.aicm
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,104 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "httparty"
4
+ require "json"
5
+ require "io/console"
6
+ require_relative "string"
7
+
8
+ # CommitGpt based on GPT-3
9
+ module CommitGpt
10
+ # Commit AI roboter based on GPT-3
11
+ class CommitAi
12
+ OPENAI_API_KEY = ENV.fetch("OPENAI_API_KEY", nil)
13
+ def aicm
14
+ exit(1) unless welcome
15
+ diff = git_diff || exit(1)
16
+ ai_commit_message = message(diff) || exit(1)
17
+ puts `git commit -m "#{ai_commit_message}" && echo && echo && git log -1 && echo` if confirmed
18
+ end
19
+
20
+ private
21
+
22
+ def confirmed
23
+ puts "▲ Do you want to commit this message? [y/n]".magenta
24
+
25
+ use_commit_message = nil
26
+ use_commit_message = $stdin.getch.downcase until use_commit_message =~ /\A[yn]\z/i
27
+
28
+ puts "\n▲ Commit message has not been commited.\n".red if use_commit_message == "n"
29
+
30
+ use_commit_message == "y"
31
+ end
32
+
33
+ def message(diff = nil)
34
+ prompt = "I want you to act like a git commit message writer. I will input a git diff and your job is to convert it into a useful " \
35
+ "commit message. Do not preface the commit with anything, use the present tense, return a complete sentence, " \
36
+ "and do not repeat yourself: #{diff}"
37
+
38
+ puts "▲ Generating your AI commit message...\n".gray
39
+ ai_commit_message = generate_commit(prompt)
40
+ return nil if ai_commit_message.nil?
41
+
42
+ puts "#{"▲ Commit message: ".green}git commit -am \"#{ai_commit_message}\"\n\n"
43
+ ai_commit_message
44
+ end
45
+
46
+ def git_diff
47
+ diff = `git diff --cached . ":(exclude)Gemfile.lock" ":(exclude)package-lock.json" ":(exclude)yarn.lock" ":(exclude)pnpm-lock.yaml"`.chomp
48
+
49
+ if diff.empty?
50
+ puts "▲ No staged changes found. Make sure there are changes and run `git add .`".red
51
+ return nil
52
+ end
53
+
54
+ # Accounting for GPT-3's input req of 4k tokens (approx 8k chars)
55
+ if diff.length > 8000
56
+ puts "▲ The diff is too large to write a commit message.".red
57
+ return nil
58
+ end
59
+
60
+ diff
61
+ end
62
+
63
+ def welcome
64
+ puts "\n▲ Welcome to AI Commits!".green
65
+
66
+ if OPENAI_API_KEY.nil?
67
+ puts "▲ Please save your OpenAI API key as an env variable by doing 'export OPENAI_API_KEY=YOUR_API_KEY'".red
68
+ return false
69
+ end
70
+
71
+ begin
72
+ `git rev-parse --is-inside-work-tree`
73
+ rescue StandardError
74
+ puts "▲ This is not a git repository".red
75
+ return false
76
+ end
77
+
78
+ true
79
+ end
80
+
81
+ def generate_commit(prompt = "")
82
+ payload = {
83
+ model: "text-davinci-003", prompt: prompt, temperature: 0.7, top_p: 1,
84
+ frequency_penalty: 0, presence_penalty: 0, max_tokens: 200, stream: false, n: 1
85
+ }
86
+
87
+ begin
88
+ response = HTTParty.post("https://api.openai.com/v1/completions",
89
+ headers: { "Authorization" => "Bearer #{OPENAI_API_KEY}",
90
+ "Content-Type" => "application/json", "User-Agent" => "Ruby/#{RUBY_VERSION}" },
91
+ body: payload.to_json)
92
+
93
+ puts "#{response.inspect}\n"
94
+
95
+ ai_commit = response["choices"][0]["text"]
96
+ rescue StandardError
97
+ puts "▲ There was an error with the OpenAI API. Please try again later.".red
98
+ return nil
99
+ end
100
+
101
+ ai_commit.gsub(/(\r\n|\n|\r)/, "")
102
+ end
103
+ end
104
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Open String to add color
4
+ class String
5
+ def red
6
+ "\e[31m#{self}\e[0m"
7
+ end
8
+
9
+ def green
10
+ "\e[32m#{self}\e[0m"
11
+ end
12
+
13
+ def gray
14
+ "\e[90m#{self}\e[0m"
15
+ end
16
+
17
+ def magenta
18
+ "\e[35m#{self}\e[0m"
19
+ end
20
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CommitGpt
4
+ VERSION = "0.1.2"
5
+ end
data/lib/commitgpt.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "commitgpt/version"
4
+ require_relative "commitgpt/commit_ai"
5
+
6
+ module CommitGpt
7
+ class Error < StandardError; end
8
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: commitgpt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Peng Zhang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.18'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.18'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ description: A CLI that writes your git commit messages for you with AI. Never write
42
+ a commit message again.
43
+ email:
44
+ - zpregister@gmail.com
45
+ executables:
46
+ - aicm
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".rspec"
51
+ - ".rubocop.yml"
52
+ - CHANGELOG.md
53
+ - CODE_OF_CONDUCT.md
54
+ - Gemfile
55
+ - Gemfile.lock
56
+ - LICENSE
57
+ - LICENSE.txt
58
+ - README.md
59
+ - Rakefile
60
+ - bin/aicm
61
+ - lib/commitgpt.rb
62
+ - lib/commitgpt/cli.rb
63
+ - lib/commitgpt/commit_ai.rb
64
+ - lib/commitgpt/string.rb
65
+ - lib/commitgpt/version.rb
66
+ homepage: https://github.com/ZPVIP/commitgpt
67
+ licenses:
68
+ - MIT
69
+ metadata:
70
+ homepage_uri: https://github.com/ZPVIP/commitgpt
71
+ source_code_uri: https://github.com/ZPVIP/commitgpt
72
+ changelog_uri: https://github.com/ZPVIP/commitgpt/blob/master/CHANGELOG.md
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: 2.6.0
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubygems_version: 3.1.6
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: A CLI AI that writes git commit messages for you.
92
+ test_files: []