philiprehberger-string_kit 0.1.1 → 0.1.3
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 +13 -1
- data/README.md +4 -4
- 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: 897134bcafe4cb8a5dad6ad2a2d70d32fa438caa0dced20624774ebd5bc90963
|
|
4
|
+
data.tar.gz: 7aa8ad59bbf927e17b073978a1c9050b9b4a5d46d5b708f1dc557ad6b121245d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55f5ee1f6e377ff623bf89f968cff341d5543821976bf2854fd985fc4f34bce079512ee51d55ccb94cd3e7a8869ec22682ce178b0f8e0fed2a1e9e33b77a5fba
|
|
7
|
+
data.tar.gz: fc544989aecf87188158133820fb7cdc1eca0831320cc7f72bdad28bf5aa5f1283696fe2cf47f3d6fc7dadadee9376fc5073e77e95b0c0190e5edf0388da9a09
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
## [0.1.3] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README code examples to use double-quote require statements
|
|
14
|
+
- Remove inline comments from Development section to match template
|
|
15
|
+
|
|
16
|
+
## [0.1.2] - 2026-03-24
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Fix Installation section quote style to double quotes
|
|
20
|
+
|
|
21
|
+
## [0.1.1] - 2026-03-22
|
|
10
22
|
|
|
11
23
|
### Changed
|
|
12
24
|
- Update rubocop configuration for Windows compatibility
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Comprehensive string utilities without ActiveSupport dependency
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-string_kit"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -27,7 +27,7 @@ gem install philiprehberger-string_kit
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
|
29
29
|
```ruby
|
|
30
|
-
require
|
|
30
|
+
require "philiprehberger/string_kit"
|
|
31
31
|
|
|
32
32
|
Philiprehberger::StringKit.titlecase('hello world') # => "Hello World"
|
|
33
33
|
Philiprehberger::StringKit.kebab_case('helloWorld') # => "hello-world"
|
|
@@ -78,8 +78,8 @@ Philiprehberger::StringKit.dedent(" hello\n world") # => "hello\nworl
|
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
80
|
bundle install
|
|
81
|
-
bundle exec rspec
|
|
82
|
-
bundle exec rubocop
|
|
81
|
+
bundle exec rspec
|
|
82
|
+
bundle exec rubocop
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
## 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.3
|
|
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-25 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.
|