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 +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +4 -4
- data/lib/philiprehberger/queue_stack/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: f4ef4ed0b1e562639df4b29faf1cb19980ed9847082b5e364cfc6ead53a60ee0
|
|
4
|
+
data.tar.gz: e838cc0fb510b4a4357601ed0b10c59484156caff7c6b355fdecfb9436eb773d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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
|
|
112
|
-
bundle exec rubocop
|
|
111
|
+
bundle exec rspec
|
|
112
|
+
bundle exec rubocop
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
## License
|
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.
|
|
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: Thread-safe queue and stack data structures with configurable capacity
|
|
14
14
|
limits, blocking enqueue/dequeue with timeouts, and peek operations. Uses Mutex
|