extralite-bundle 1.26 → 1.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/ext/sqlite3/sqlite3.c +7506 -3493
- data/ext/sqlite3/sqlite3.h +304 -130
- data/lib/extralite/version.rb +1 -1
- data/lib/sequel/adapters/extralite.rb +26 -26
- data/test/test_sequel.rb +27 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b51bacdb05577087d8fd0aa6428121a111602171b57deda15eab5f1cf29cfda5
|
4
|
+
data.tar.gz: 433cf1f1960a8a061c6d99b94cd21d1ede168e6834c9e52b72121087dedfdb04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2c02756e201bede96496566f377624abe732497b40e24ef166109df059d9c0e45d53c0787995b5837708e7546ba92e9ede723d63f76e81c2ad643880df391db
|
7
|
+
data.tar.gz: 25e7d986ff8f0c3a8b449a35f81afd7b18bdc76de3b3fdede55b6f9d4859e8f50bf081737181f039c4d34cc465b2faa67b93ef50ababb2a3571550f3476bd8c7
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -14,7 +14,7 @@ with an SQLite3 database, as well as prepared statements.
|
|
14
14
|
Extralite comes in two flavors: the `extralite` gem which uses the
|
15
15
|
system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
|
16
16
|
the latest version of SQLite
|
17
|
-
([3.
|
17
|
+
([3.42.0](https://sqlite.org/releaselog/3_42_0.html)), offering access to the
|
18
18
|
latest features and enhancements.
|
19
19
|
|
20
20
|
## Features
|