ikuzo 0.1.0 → 1.0.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: 341ee328303de83855560af0ab990e8c599d9fae811cf94de96e86057c83b26e
4
- data.tar.gz: e062e1eb9fef1001223c9b144419e7e776d4f45e3e9d32d62d324aa7df08646b
3
+ metadata.gz: 03a3e2b9c8aa4312b959d5cbffa4e6ba30097d85ca1a96fd5b406edb79aaa2ed
4
+ data.tar.gz: f47271882fbd082d5c7a63462868178c7d6677d3613b82faaabae98162b69efd
5
5
  SHA512:
6
- metadata.gz: c178da9edd66460dbe86f01fc95478423f62c917ca5c62df24c3f87cd2b14fc9e1ef0222951d29bd8f3b097f5161d192880a66937fe1ac7b906953ed891cb881
7
- data.tar.gz: 651e3429246c11d481bf39e57b629f968b09cc8be1f44958ff1aaca63c6f841783c4c1eda74f5535d4f7dc204719719c60977836456f6c94ada09878773f17af
6
+ metadata.gz: c66c00de06271d20e75791a4842cd856fa6f44ac011147e247a0e5061ac48f3efe6bd801049437280cacd959a7cbdd6431310ca140f13782cdfa069378f7ea5e
7
+ data.tar.gz: 843fefb3a5b098b4ae53ce98df86477262415a38cc17c294e8047ed6294d8c2fc708ca3b28c90f1e1a453af28c8144f65ae7bb0d6330244659258e3f26a5dd6b
data/README.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Ikuzo
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/ikuzo.svg)](https://badge.fury.io/rb/ikuzo)
4
+
5
+ [!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/ojisanchamchi)
6
+
3
7
  Ikuzo is a Ruby gem that generates short, motivational commit messages for developers. Use it as a CLI tool or as a library inside your scripts when you need an instant morale boost.
4
8
 
9
+ I built it after one too many blank stares at my terminal, trying to squeeze yet another branch name into a Conventional Commit subject. Life is short, take time to code, so I'd rather spend the focus on shipping than negotiating with commit lint rules. With Ikuzo, I can fire off a compliant, upbeat message in seconds and get back to building.
10
+
5
11
  ## Installation
6
12
 
7
13
  ```bash
@@ -96,7 +102,7 @@ Available categories:
96
102
  Show the installed version:
97
103
 
98
104
  $ ikuzo --version
99
- 0.1.0
105
+ 1.0.0
100
106
  ```
101
107
 
102
108
  Each Conventional Commit category builds a `<type>: ...` message from your current Git branch, appends a cleaned-up motivational quip, and falls back to a default subject if the branch cannot be detected.
data/ikuzo.gemspec CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |spec|
6
6
  spec.authors = ["Dang Quang Minh"]
7
7
  spec.email = ["ojisanchamchi@gmail.com"]
8
8
 
9
- spec.summary = "Generate fun, motivational commit messages."
10
- spec.description = "Ikuzo delivers short, humorous, and motivational commit messages for developers via both CLI and library usage."
9
+ spec.summary = "Generate convention-ready commit messages without overthinking them."
10
+ spec.description = "Ikuzo delivers short, humorous, and motivational commit messages so you can satisfy Conventional Commit lint rules and get back to coding—life is short, take time to code—whether you call it from the CLI or as a library."
11
11
  spec.homepage = "https://github.com/ojisanchamchi/ruby_ikuzo#readme"
12
12
  spec.license = "MIT"
13
13
 
data/lib/ikuzo/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ikuzo
4
- VERSION = "0.1.0"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ikuzo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dang Quang Minh
@@ -37,8 +37,9 @@ dependencies:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
39
  version: '13.0'
40
- description: Ikuzo delivers short, humorous, and motivational commit messages for
41
- developers via both CLI and library usage.
40
+ description: Ikuzo delivers short, humorous, and motivational commit messages so you
41
+ can satisfy Conventional Commit lint rules and get back to coding—life is short,
42
+ take time to code—whether you call it from the CLI or as a library.
42
43
  email:
43
44
  - ojisanchamchi@gmail.com
44
45
  executables:
@@ -77,5 +78,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
78
  requirements: []
78
79
  rubygems_version: 3.6.9
79
80
  specification_version: 4
80
- summary: Generate fun, motivational commit messages.
81
+ summary: Generate convention-ready commit messages without overthinking them.
81
82
  test_files: []