philiprehberger-pathname_kit 0.1.0 → 0.1.2
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 +3 -3
- data/lib/philiprehberger/pathname_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: 6f71112ecb7eadc82e4d04864b02ab26158767ba6ee787433399002067757509
|
|
4
|
+
data.tar.gz: 5d28a5f3cd5789ed807d4abcd5c1b4b00102947701d3420fae3292fadfc47970
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e719fc1dd076fd9d4af7b452e6c5e01e5b53179e78091ec48861007982511bc62186b02f009821a78c03220b7a792fdc998579dae0f55f3e8b6fde65166d38b5
|
|
7
|
+
data.tar.gz: d4bffbacb4cb4c1b473176c166a8fdfd71832db20238c5fe7580365c4393723a08d424c0d7e491ddceec1c975be88370e515350132f415746cc9886e9b4cda1e
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.2] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix Installation section quote style to double quotes
|
|
14
|
+
- Remove inline comments from Development section to match template
|
|
15
|
+
|
|
16
|
+
## [0.1.1] - 2026-03-22
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Expand test coverage from 24 to 36 examples
|
|
20
|
+
|
|
10
21
|
## [0.1.0] - 2026-03-22
|
|
11
22
|
|
|
12
23
|
### Added
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Pathname extensions for atomic write, safe delete, and common file operations
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-pathname_kit"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -82,8 +82,8 @@ end
|
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
bundle install
|
|
85
|
-
bundle exec rspec
|
|
86
|
-
bundle exec rubocop
|
|
85
|
+
bundle exec rspec
|
|
86
|
+
bundle exec rubocop
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
## License
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-pathname_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
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-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Pathname utility library providing atomic writes, safe deletes, directory
|
|
14
14
|
creation, glob-based file finding, tempfile helpers, touch, and line counting. All
|