philiprehberger-queue_stack 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb3c47dcfc192e615cba4fd45499c4795e9e75709dc5c2e3f49558e24f66079f
4
- data.tar.gz: 47622c2ace206565ca68368c15c8b8145a825138cae4125b8fe65781938a36b2
3
+ metadata.gz: 5541578c54c7f8b07f9a49590279a9e607da14885af4df22d6f55c7b796a334d
4
+ data.tar.gz: 57db85c1ff10a977487a4e3f2372f4daa9212ca366fa882a680517f99579cb45
5
5
  SHA512:
6
- metadata.gz: a022329cdb118ca730b1ff1587bd3347cc5c42a5531f946e28a4cd660cce234ab38b0436afa3cdcb8d956afd571d97f7aeaf4db7465cad4df0bac33a90df5e54
7
- data.tar.gz: 0b8843ed669a90e5e3f906fe64e5df242298d6a8d2e33a8206e2830dc59da164a112af8b2c1c0fb072b0c7c38a945777e826729aac2c4ef79ffbc9600494f02d
6
+ metadata.gz: 5cdaa533958587512c822228bae4256ad0824d170a87c0e790fed74e156b85c8d9b5de72cf7dc1a791ea1ed6e598f469ab48396e7df6ffe02a1f97add12edb48
7
+ data.tar.gz: a213ab39720e54b86661369b9041be11809b64e46d9840b034f657feb72ad298334a75f3c9e7932f6eb924443855c381da4f92cb0655637a82f9f139fdd98e89
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 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 @@ Thread-safe Queue and Stack with capacity limits and blocking operations
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-queue_stack'
18
+ gem "philiprehberger-queue_stack"
19
19
  ```
20
20
 
21
21
  Or install directly:
@@ -108,8 +108,8 @@ q.full? # => true
108
108
 
109
109
  ```bash
110
110
  bundle install
111
- bundle exec rspec # Run tests
112
- bundle exec rubocop # Check code style
111
+ bundle exec rspec
112
+ bundle exec rubocop
113
113
  ```
114
114
 
115
115
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module QueueStack
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-queue_stack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
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-22 00:00:00.000000000 Z
11
+ date: 2026-03-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Thread-safe queue and stack data structures with configurable capacity
14
14
  limits, blocking enqueue/dequeue with timeouts, and peek operations. Uses Mutex