philiprehberger-pathname_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: 6f71112ecb7eadc82e4d04864b02ab26158767ba6ee787433399002067757509
4
- data.tar.gz: 5d28a5f3cd5789ed807d4abcd5c1b4b00102947701d3420fae3292fadfc47970
3
+ metadata.gz: 76f41edf389b176ef07241fe680d84b0c0723158c134622956eb94d16e42a5dc
4
+ data.tar.gz: 3ae2267405c52da4af4ca981880792b6e9b9b27986106470dd3ab99de028490b
5
5
  SHA512:
6
- metadata.gz: e719fc1dd076fd9d4af7b452e6c5e01e5b53179e78091ec48861007982511bc62186b02f009821a78c03220b7a792fdc998579dae0f55f3e8b6fde65166d38b5
7
- data.tar.gz: d4bffbacb4cb4c1b473176c166a8fdfd71832db20238c5fe7580365c4393723a08d424c0d7e491ddceec1c975be88370e515350132f415746cc9886e9b4cda1e
6
+ metadata.gz: 4da17c9294a88c9bc8c73983b622bb94cec1b179a3f6c1bf0b0b912e256376ef3915a4bdf036918f7a36eb0c1c378e1b1bef4e75d3c1a670346315931a038246
7
+ data.tar.gz: 4a4c4bb9404ec6de853e20fa20bd3b9769206545a338def2d8c4c1afb34d2a2058a83ba02ac6efc19a49611b52a35bfd1a02677746a942805890d77a7c23e272
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.4] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.1.3] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Standardize README code examples to use double-quote require statements
19
+
10
20
  ## [0.1.2] - 2026-03-24
11
21
 
12
22
  ### Fixed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-pathname-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-pathname-kit/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-pathname_kit.svg)](https://rubygems.org/gems/philiprehberger-pathname_kit)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-pathname-kit)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-pathname-kit)](https://github.com/philiprehberger/rb-pathname-kit/commits/main)
6
6
 
7
7
  Pathname extensions for atomic write, safe delete, and common file operations
8
8
 
@@ -27,7 +27,7 @@ gem install philiprehberger-pathname_kit
27
27
  ## Usage
28
28
 
29
29
  ```ruby
30
- require 'philiprehberger/pathname_kit'
30
+ require "philiprehberger/pathname_kit"
31
31
 
32
32
  Philiprehberger::PathnameKit.atomic_write('config.yml') do |f|
33
33
  f.write('key: value')
@@ -86,6 +86,24 @@ bundle exec rspec
86
86
  bundle exec rubocop
87
87
  ```
88
88
 
89
+ ## Support
90
+
91
+ If you find this project useful:
92
+
93
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-pathname-kit)
94
+
95
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-pathname-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
96
+
97
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-pathname-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
98
+
99
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
100
+
101
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
102
+
103
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
104
+
105
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
106
+
89
107
  ## License
90
108
 
91
- MIT
109
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PathnameKit
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
@@ -70,7 +70,7 @@ module Philiprehberger
70
70
  raise Error, 'glob cannot be nil' if glob.nil?
71
71
  raise Error, 'glob cannot be empty' if glob.to_s.empty?
72
72
 
73
- Dir.glob(glob).sort
73
+ Dir.glob(glob)
74
74
  end
75
75
 
76
76
  # Create a temporary file with a given extension and yield its path.
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.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-31 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