philiprehberger-ring_buffer 0.1.1 → 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: 067dd8981e1a7ae5addb0664321a445f478214790a18244dc1d6f09d1f255fb6
4
- data.tar.gz: 35165f8e9138b3b02a70f65c6c2b3856db6717c15fd465641503e1c0eefc6995
3
+ metadata.gz: 202f97af91037f4173747a5125ca716f73152484add220f218a28143de249d62
4
+ data.tar.gz: a649798ce1036c317fe8c0d4d46983483589809130e699c3d307477dc42cfc2c
5
5
  SHA512:
6
- metadata.gz: 0406ffbac19fc05fd95673432c68964ed2dd15211f72608382a1895833b5c45e5ed3b77c998be705e14855e33905851ab0cc1e9286655063fc8cb28038fe0bb7
7
- data.tar.gz: 0d6338790e32c07a448e8df6a498640cf70758edf1ece5a253f14cf9e2e6cfa6992031dd81e7c1b1a1f916d93665dd32920a4df9e68edeaee3bccc23fb4efa21
6
+ metadata.gz: a8c5670afcfe9d93f224bd7c5f619b30faef6b14d4351f3d54eea3d0d6d9566484e208596490868d56fc9818496318244f6970cc16642fd417be87c89b9280bf
7
+ data.tar.gz: f646537574542e539da8c4731ed552502d66705b85ca859bbdc138825c388293fb22390db5abfef4f0be5f493944735a7c0ae58e9b51b99c54f570e7eef71d5e
data/CHANGELOG.md CHANGED
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
- n## [0.1.1] - 2026-03-22
9
+
10
+ ## [0.1.2] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Fix Installation section quote style to double quotes
14
+
15
+ ## [0.1.1] - 2026-03-22
10
16
 
11
17
  ### Changed
12
18
  - Update rubocop configuration for Windows compatibility
data/README.md CHANGED
@@ -15,7 +15,7 @@ Fixed-size circular buffer with overflow, statistics, and enumeration
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-ring_buffer'
18
+ gem "philiprehberger-ring_buffer"
19
19
  ```
20
20
 
21
21
  Or install directly:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  class RingBuffer
5
- VERSION = '0.1.1'
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-ring_buffer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
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-23 00:00:00.000000000 Z
11
+ date: 2026-03-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Fixed-capacity ring buffer that overwrites oldest entries on overflow,
14
14
  with built-in statistics (average, sum, min, max), last-n retrieval, and Enumerable