philiprehberger-string_kit 0.1.2 → 0.1.4

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: b33b3f5a309580e26a0c589bf14f10d453f164c387570828dc4c31a143f72d6d
4
- data.tar.gz: 27c6ca242f3639b7839190d287cfd6a436ac38a1f7c49ce312809189caf4f7bd
3
+ metadata.gz: 79957a0fac007bff2a158db9eb49e5416728209e24b5156d7d270922577ab8f8
4
+ data.tar.gz: 52833c253e8bc33536b21ff69fa7af320a7063e4d621ef57b940cbcdb14fae96
5
5
  SHA512:
6
- metadata.gz: c83d14881a3e260cd1de6747805c52e8a02656b9a35ebc36af50096c2625d909b3ec4e7495541b5e521c4ddb9105cf48a217e6b06585515911a546c4a665edc6
7
- data.tar.gz: 44eb819fe65953f85143305cd912cd989ac8a189674c43ac1a32b29989b5f536d8d5ba742f7a59f27d797f26cb542ede31754ba829b03c6af5184b0b0efd5d74
6
+ metadata.gz: acc212f4464891cf7111ef6e9b7126ee9b71eacd6629713729b9c213b5ce54a9a93ef4b64270dd3d4a7166bea2c3bcc2efcbc8edba2dbab5460f5f731384f117
7
+ data.tar.gz: 865079ab907c886c0e9263debfcfe20b74cc35b4ca271f89082f496b21a4349f9093748ea9109866da3467df2c26a8c928288a72002a2d76a094e0e6b466a9c8
data/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ 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.4] - 2026-03-26
11
+
12
+ ### Changed
13
+
14
+ - Add Sponsor badge and fix License link format in README
15
+
16
+ ## [0.1.3] - 2026-03-24
17
+
18
+ ### Fixed
19
+ - Standardize README code examples to use double-quote require statements
20
+ - Remove inline comments from Development section to match template
21
+
10
22
  ## [0.1.2] - 2026-03-24
11
23
 
12
24
  ### Fixed
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![Tests](https://github.com/philiprehberger/rb-string-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-string-kit/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-string_kit.svg)](https://rubygems.org/gems/philiprehberger-string_kit)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-string-kit)](LICENSE)
6
+ [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](https://github.com/sponsors/philiprehberger)
6
7
 
7
8
  Comprehensive string utilities without ActiveSupport dependency
8
9
 
@@ -27,7 +28,7 @@ gem install philiprehberger-string_kit
27
28
  ## Usage
28
29
 
29
30
  ```ruby
30
- require 'philiprehberger/string_kit'
31
+ require "philiprehberger/string_kit"
31
32
 
32
33
  Philiprehberger::StringKit.titlecase('hello world') # => "Hello World"
33
34
  Philiprehberger::StringKit.kebab_case('helloWorld') # => "hello-world"
@@ -78,10 +79,10 @@ Philiprehberger::StringKit.dedent(" hello\n world") # => "hello\nworl
78
79
 
79
80
  ```bash
80
81
  bundle install
81
- bundle exec rspec # Run tests
82
- bundle exec rubocop # Check code style
82
+ bundle exec rspec
83
+ bundle exec rubocop
83
84
  ```
84
85
 
85
86
  ## License
86
87
 
87
- MIT
88
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module StringKit
5
- VERSION = '0.1.2'
5
+ VERSION = "0.1.4"
6
6
  end
7
7
  end
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.2
4
+ version: 0.1.4
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-24 00:00:00.000000000 Z
11
+ date: 2026-03-27 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.