Releases: jethrodaniel/sqlite_extensions-uuid
Releases · jethrodaniel/sqlite_extensions-uuid
v1.0.2 - 2025-07-03
v1.0.1 - 2025-03-20
Just some cleanup.
- add
SqliteExtensions::UUID::VERSION
- use
rspec
for tests - misc cleanup with
rubocop
Full Changelog: v1.0.0...v1.0.1
v1.0.0 - 2024-12-07
Now that sqlite3-ruby natively supports loading extensions via Database.new
, we can easily load extensions in Rails apps without having to monkey-patch anything.
This is all you need:
gem "sqlite_extensions-uuid"
development:
adapter: sqlite3
extensions:
- <%= SqliteExtensions::UUID.to_path %>
Now that this is finally supported, we've removed the old railtie-based approach.
We've also made this gem depend on sqlite3-ruby >= 2.4.0
in order to ensure that support is available.
And with that, we're v1.0.0
!