philiprehberger-string_kit 0.1.3 → 0.1.5
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/CHANGELOG.md +11 -0
- data/README.md +20 -2
- data/lib/philiprehberger/string_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a101ff6299427781a2e36187c45ea562262a55e42ccbd16603914bd88d98e8db
|
|
4
|
+
data.tar.gz: 191f68c44b3f23ee978204ca0826470ee5e7301c4e50742c1748e3b561940ccd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25e22e494fc0b416cec981127cdd30b211a85ea18330d69fabec6487b95b8cc376013cfb56268cf2cc756a23c28ad3fc6d423dd421ff9b05ac382f27f2838ca0
|
|
7
|
+
data.tar.gz: 225abafbcd6f1542197d745ba6cfb155007002449f8632c778b58d28eeb2bb627d38d08b22c1cdbe6c888fabc04fb6f3e67807325bbb7116953e0bfa8db6b05b
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.5] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Standardize README badges, support section, and license format
|
|
14
|
+
|
|
15
|
+
## [0.1.4] - 2026-03-26
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Add Sponsor badge and fix License link format in README
|
|
20
|
+
|
|
10
21
|
## [0.1.3] - 2026-03-24
|
|
11
22
|
|
|
12
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-string-kit/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-string_kit)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-string-kit/commits/main)
|
|
6
6
|
|
|
7
7
|
Comprehensive string utilities without ActiveSupport dependency
|
|
8
8
|
|
|
@@ -82,6 +82,24 @@ bundle exec rspec
|
|
|
82
82
|
bundle exec rubocop
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
## Support
|
|
86
|
+
|
|
87
|
+
If you find this project useful:
|
|
88
|
+
|
|
89
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-string-kit)
|
|
90
|
+
|
|
91
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-string-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
92
|
+
|
|
93
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-string-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
94
|
+
|
|
95
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
96
|
+
|
|
97
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
98
|
+
|
|
99
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
100
|
+
|
|
101
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
102
|
+
|
|
85
103
|
## License
|
|
86
104
|
|
|
87
|
-
MIT
|
|
105
|
+
[MIT](LICENSE)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-string_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: String case conversion, HTML stripping, whitespace normalization, word
|
|
14
14
|
counting, reading time estimation, excerpt extraction, indentation, and more.
|