bonkers-bitfields 1.0.0 → 1.0.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: 3c1c757381a66cc87dd65a60dc30fdcce2a4d937d368ab919bf3de33fe6d3629
4
- data.tar.gz: 0be0ec980184561847d76fbfd1c5c8b00eb84638223fc055f18b22a1ad5b7057
3
+ metadata.gz: c0f58b53319594aff2410e97681f1f0972df69f946bc6b167ee20f5f5c965fc5
4
+ data.tar.gz: 5d1d3226ce84ae4cc301f777f4052f0390de775648bc0fcfe2b99b0dc3e2744e
5
5
  SHA512:
6
- metadata.gz: f8bb243863c98d585f5924e3aa58c56b66480404c72218f5dec46aedc8b9fae560f09a314390ee9069e8f4bfc23518de2ed177467842e64c0e86b327a152ffd2
7
- data.tar.gz: eac346b8c6b45836024ce89002cdf4b60ca278f2f126f5f45525a98ddf7f1f943117c6cdd7ca62375d5b83b25b8c9cff0d8c24a922e76e2fba6332558194b3ca
6
+ metadata.gz: fe1d53bb61d48c28a19698a89cfa9dcb2b49066c5935e9cac2efced6cdead7a4dbb24064900b31c102201e237423e1f48463f63696d313a384a9c47dfa399c96
7
+ data.tar.gz: a009962ea12e8e2ec8b5db165fa885fdf4b18d5b929baa9e10d27b1876aa3578574d72758b580c9459e76585bff2450bc7ee06080b87794415eca6db7f84949c
data/CHANGELOG.md CHANGED
@@ -6,6 +6,30 @@ All notable changes to this project are documented here. The format is based on
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.2] - 2026-06-30
10
+
11
+ ### Fixed
12
+ - Plain `gem "bonkers-bitfields"` now loads the library under Bundler's auto-require (e.g. Rails'
13
+ `Bundler.require`). Because the gem name (`bonkers-bitfields`) no longer matches the library file
14
+ (`bitfields.rb`), Bundler previously failed to require it silently, leaving `Bitfields` undefined.
15
+ A `lib/bonkers-bitfields.rb` shim that `require`s `bitfields` resolves this, so `require: "bitfields"`
16
+ in the `Gemfile` is no longer needed.
17
+
18
+ ## [1.0.1] - 2026-06-29
19
+
20
+ ### Added
21
+ - Tested against ActiveRecord 8.1 (Ruby 3.2+); supported range is now AR 6.1 – 8.1.
22
+
23
+ ### Fixed
24
+ - Corrected the `Rael Gugelmin Cunha` contributor link, which pointed at another contributor's
25
+ GitHub profile.
26
+
27
+ ### Changed
28
+ - `Gemfile.lock` is no longer committed (standard for a library), so CI resolves dependencies
29
+ fresh against each `gemfiles/*.gemfile`.
30
+
31
+ ## [1.0.0] - 2026-06-29
32
+
9
33
  ### Changed (breaking)
10
34
  - **Renamed the published gem to `bonkers-bitfields`.** The required library path
11
35
  (`require "bitfields"`) and the `Bitfields` module are unchanged, so `include Bitfields`
@@ -41,3 +65,8 @@ All notable changes to this project are documented here. The format is based on
41
65
  ### Removed
42
66
  - Travis CI (replaced with GitHub Actions) and the `wwtd` development dependency.
43
67
  - Support for Ruby < 3.1 and ActiveRecord < 6.1.
68
+
69
+ [Unreleased]: https://github.com/bonkers-ie/bitfields/compare/v1.0.2...HEAD
70
+ [1.0.2]: https://github.com/bonkers-ie/bitfields/compare/v1.0.1...v1.0.2
71
+ [1.0.1]: https://github.com/bonkers-ie/bitfields/compare/v1.0.0...v1.0.1
72
+ [1.0.0]: https://github.com/bonkers-ie/bitfields/releases/tag/v1.0.0
data/README.md CHANGED
@@ -192,7 +192,7 @@ end
192
192
 
193
193
  Supported versions
194
194
  ===================
195
- Ruby >= 3.1 and ActiveRecord 6.1 – 8.0, tested on CI.
195
+ Ruby >= 3.1 and ActiveRecord 6.1 – 8.1, tested on CI.
196
196
 
197
197
  Authors
198
198
  =======
@@ -205,7 +205,7 @@ Authors
205
205
  - [Justin Aiken](https://github.com/JustinAiken)
206
206
  - [szTheory](https://github.com/szTheory)
207
207
  - [Reed G. Law](https://github.com/reedlaw)
208
- - [Rael Gugelmin Cunha](https://github.com/reedlaw)
208
+ - [Rael Gugelmin Cunha](https://github.com/raelgc)
209
209
  - [Alan Wong](https://github.com/naganowl)
210
210
  - [Andrew Bates](https://github.com/a-bates)
211
211
  - [Shirish Pampoorickal](https://github.com/shirish-pampoorickal)
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bitfields
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.2'
5
5
  Version = VERSION
6
6
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The gem is published as `bonkers-bitfields` but its library lives at `bitfields`
4
+ # (the require path and `Bitfields` module are unchanged from the upstream gem).
5
+ # This shim lets Bundler's auto-require resolve the gem-name path, so a plain
6
+ # `gem "bonkers-bitfields"` loads the library without needing `require: "bitfields"`.
7
+ require 'bitfields'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bonkers-bitfields
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
@@ -138,6 +138,7 @@ files:
138
138
  - lib/bitfields.rb
139
139
  - lib/bitfields/rspec.rb
140
140
  - lib/bitfields/version.rb
141
+ - lib/bonkers-bitfields.rb
141
142
  homepage: https://github.com/bonkers-ie/bitfields
142
143
  licenses:
143
144
  - MIT