Fixed
- Plain
gem "bonkers-bitfields"now loads the library under Bundler's auto-require (e.g. Rails'
Bundler.require). Because the gem name (bonkers-bitfields) no longer matches the library file
(bitfields.rb), Bundler previously failed to require it silently, leavingBitfieldsundefined.
Alib/bonkers-bitfields.rbshim thatrequiresbitfieldsresolves this, sorequire: "bitfields"
in theGemfileis no longer needed.
Full Changelog: v1.0.1...v1.0.2