philiprehberger-queue_stack 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5437a719843d2e907cd9b056b5522a7cf8f463b99e55259424c7975794e16a7
4
- data.tar.gz: 165e44a38c349fa86c44f194dd37c8eeb3fcde30e0644e333850af69af44b2a3
3
+ metadata.gz: f4ef4ed0b1e562639df4b29faf1cb19980ed9847082b5e364cfc6ead53a60ee0
4
+ data.tar.gz: e838cc0fb510b4a4357601ed0b10c59484156caff7c6b355fdecfb9436eb773d
5
5
  SHA512:
6
- metadata.gz: 9a14bf8953143cd4ed50c6d9ad6f635d432c1738c81a30798d0fb9840b1a1ca7061ffd7219f65a946a9265488bb18e4a2f46ecc59f89a9a98272a219223a4d6f
7
- data.tar.gz: 8d25479acaa02b597fd3820280a51c90638b3bdfe0730347365deae2d14377a7a248a1177b5be4a340e9cdc33f5bc30984af4c356d41e45c053ab2a6370d1e92
6
+ metadata.gz: 5f2e8d31d858e39a6ec0a1ca916723546f8a9a7b37fba0530a0b7838d90dce0af3c287230f6efdcf04d013449417b12a434db802d292757f323281010b780fc6
7
+ data.tar.gz: 6fda21f8ae5e0aee952c2dfdeeb771465dac6813176b1722fda4172ae26a020f43d58ef748237df8d27e43f05e60b770ec2b96f0901c3ad1fba791a7d31b0385
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.3] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Standardize README code examples to use double-quote require statements
14
+
15
+ ## [0.1.2] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Fix Installation section quote style to double quotes
19
+ - Remove inline comments from Development section to match template
20
+
10
21
  ## [0.1.1] - 2026-03-22
11
22
 
12
23
  ### Changed
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:
@@ -27,7 +27,7 @@ gem install philiprehberger-queue_stack
27
27
  ## Usage
28
28
 
29
29
  ```ruby
30
- require 'philiprehberger/queue_stack'
30
+ require "philiprehberger/queue_stack"
31
31
 
32
32
  q = Philiprehberger::QueueStack::Queue.new(capacity: 100)
33
33
  q.enqueue('task')
@@ -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.1'
5
+ VERSION = '0.1.3'
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.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-23 00:00:00.000000000 Z
11
+ date: 2026-03-25 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