extralite-bundle 1.25 → 1.27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a10ca4157a897dc0bb8ace86cdcd481ac5fcfa9040e94599182c7b0555bcfed1
4
- data.tar.gz: 2566c686e1ad3d497e5275ea93d3f35a397760e61f5bb406696b3f795e7b6912
3
+ metadata.gz: b51bacdb05577087d8fd0aa6428121a111602171b57deda15eab5f1cf29cfda5
4
+ data.tar.gz: 433cf1f1960a8a061c6d99b94cd21d1ede168e6834c9e52b72121087dedfdb04
5
5
  SHA512:
6
- metadata.gz: 1e447ca66457de2fbc638aa29df61a91d5b5366c9f759cf1a75466e94eed9d2cb8d9dc9f45dd1ca5f52bc3d191373c8a12d5a13b3065ed7b6fbd938b939ca358
7
- data.tar.gz: e2cc6c0f43ebcc4a956e6c2d1027b713de29d64025950ce71d5c073af1ffb92b2b35a493bcf04cefe6ae5ce9df8372f6f9319888019fdba659acec2a3411bdd9
6
+ metadata.gz: b2c02756e201bede96496566f377624abe732497b40e24ef166109df059d9c0e45d53c0787995b5837708e7546ba92e9ede723d63f76e81c2ad643880df391db
7
+ data.tar.gz: 25e7d986ff8f0c3a8b449a35f81afd7b18bdc76de3b3fdede55b6f9d4859e8f50bf081737181f039c4d34cc465b2faa67b93ef50ababb2a3571550f3476bd8c7
data/.github/FUNDING.yml CHANGED
@@ -1 +1 @@
1
- github: ciconia
1
+ github: noteflakes
data/.yardopts ADDED
@@ -0,0 +1,8 @@
1
+ -o ./_yardoc
2
+ -m markdown -M redcarpet
3
+ --verbose
4
+ --protected
5
+ --no-private
6
+ --exclude sqlite3_constants.rb
7
+ ./lib
8
+ ./ext/extralite
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ # 1.27 2023-06-12
2
+
3
+ - Fix execution of prepared statements in Sequel adapter (#23 @gschlager)
4
+ - Update bundled sqlite code to version 3.42.0 (#22 @gschlager)
5
+
6
+ # 1.26 2023-05-17
7
+
8
+ - Improve documentation
9
+
1
10
  # 1.25 2023-03-10
2
11
 
3
12
  - Remove bundled sqlite3 source files from extralite.gemspec
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- extralite (1.25)
4
+ extralite (1.27)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  docile (1.4.0)
10
- json (2.6.1)
10
+ json (2.6.3)
11
11
  minitest (5.15.0)
12
12
  rake (13.0.6)
13
13
  rake-compiler (1.1.6)
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.40.1](https://sqlite.org/releaselog/3_40_1.html)), offering access to the
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
@@ -56,6 +56,7 @@ else
56
56
  $CFLAGS << ' -DTAINTING_SUPPORT'
57
57
  end
58
58
 
59
+ # @!visibility private
59
60
  def asplode missing
60
61
  if RUBY_PLATFORM =~ /mingw|mswin/
61
62
  abort "#{missing} is missing. Install SQLite3 from " +
@@ -1,6 +1,12 @@
1
1
  #include <stdio.h>
2
2
  #include "extralite.h"
3
3
 
4
+ /*
5
+ * Document-class: Extralite::PreparedStatement
6
+ *
7
+ * This class represents a prepared statement.
8
+ */
9
+
4
10
  VALUE cPreparedStatement;
5
11
 
6
12
  static size_t PreparedStatement_size(const void *ptr) {