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 +4 -4
- data/README.md +7 -1
- data/ikuzo.gemspec +2 -2
- data/lib/ikuzo/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03a3e2b9c8aa4312b959d5cbffa4e6ba30097d85ca1a96fd5b406edb79aaa2ed
|
|
4
|
+
data.tar.gz: f47271882fbd082d5c7a63462868178c7d6677d3613b82faaabae98162b69efd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c66c00de06271d20e75791a4842cd856fa6f44ac011147e247a0e5061ac48f3efe6bd801049437280cacd959a7cbdd6431310ca140f13782cdfa069378f7ea5e
|
|
7
|
+
data.tar.gz: 843fefb3a5b098b4ae53ce98df86477262415a38cc17c294e8047ed6294d8c2fc708ca3b28c90f1e1a453af28c8144f65ae7bb0d6330244659258e3f26a5dd6b
|
data/README.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Ikuzo
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/ikuzo)
|
|
4
|
+
|
|
5
|
+
[](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
|
-
|
|
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
|
|
10
|
-
spec.description = "Ikuzo delivers short, humorous, and motivational commit messages
|
|
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
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:
|
|
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
|
|
41
|
-
|
|
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
|
|
81
|
+
summary: Generate convention-ready commit messages without overthinking them.
|
|
81
82
|
test_files: []
|