philiprehberger-priority_queue 0.1.4 → 0.1.5
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 +8 -1
- data/README.md +10 -8
- data/lib/philiprehberger/priority_queue/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f342e86d70008478c28ee2b630fbd5332375444b75e95cd4fdf50067f411be4
|
|
4
|
+
data.tar.gz: 8078c13c51a0a9d793bc5163c52ee7727251571767402a8bf059cc9bdeea29da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcc26ff306632c787749bbee30127076cda0c3c915ea00c8f862ffd1cf3671332c5b8f1e6d25c415ccf78083d8c4b4983ada21d3a7c519a0dbaf358b7999030e
|
|
7
|
+
data.tar.gz: 6a96813563fd436773fee5ef8b2483cc926dd525e10958f07f055ddfc11342e08c1e171c736f3e6161abe69bef35f5fc7c048ef96a94ab2daf11622f80042a79
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
## [0.1.5] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README to match template (installation order, code fences, license section, one-liner format)
|
|
14
|
+
- Update gemspec summary to match README description
|
|
15
|
+
|
|
16
|
+
## [0.1.4] - 2026-03-22
|
|
10
17
|
|
|
11
18
|
### Changed
|
|
12
19
|
- Fix README badges to match template (Tests, Gem Version, License)
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-priority_queue)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Binary heap priority queue with min/max modes
|
|
7
|
+
Binary heap priority queue with min/max modes, custom comparators, and priority updates
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -12,16 +12,18 @@ Binary heap priority queue with min/max modes and custom comparators. Features O
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
gem install philiprehberger-priority_queue
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
Or add to your Gemfile:
|
|
15
|
+
Add to your Gemfile:
|
|
20
16
|
|
|
21
17
|
```ruby
|
|
22
18
|
gem 'philiprehberger-priority_queue'
|
|
23
19
|
```
|
|
24
20
|
|
|
21
|
+
Or install directly:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
gem install philiprehberger-priority_queue
|
|
25
|
+
```
|
|
26
|
+
|
|
25
27
|
## Usage
|
|
26
28
|
|
|
27
29
|
```ruby
|
|
@@ -114,7 +116,7 @@ Returns a new queue containing items from both queues. Does not modify the origi
|
|
|
114
116
|
|
|
115
117
|
## Development
|
|
116
118
|
|
|
117
|
-
```
|
|
119
|
+
```bash
|
|
118
120
|
bundle install
|
|
119
121
|
bundle exec rspec
|
|
120
122
|
bundle exec rubocop
|
|
@@ -122,4 +124,4 @@ bundle exec rubocop
|
|
|
122
124
|
|
|
123
125
|
## License
|
|
124
126
|
|
|
125
|
-
MIT
|
|
127
|
+
MIT
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-priority_queue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
@@ -51,5 +51,6 @@ requirements: []
|
|
|
51
51
|
rubygems_version: 3.5.22
|
|
52
52
|
signing_key:
|
|
53
53
|
specification_version: 4
|
|
54
|
-
summary: Binary heap priority queue with min/max modes
|
|
54
|
+
summary: Binary heap priority queue with min/max modes, custom comparators, and priority
|
|
55
|
+
updates
|
|
55
56
|
test_files: []
|