sqlite3 1.4.4 → 1.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{API_CHANGES.rdoc → API_CHANGES.md} +3 -4
- data/CHANGELOG.md +419 -0
- data/CONTRIBUTING.md +24 -0
- data/Gemfile +2 -19
- data/LICENSE-DEPENDENCIES +20 -0
- data/README.md +233 -0
- data/ext/sqlite3/database.c +7 -8
- data/ext/sqlite3/extconf.rb +153 -94
- data/ext/sqlite3/sqlite3.c +2 -0
- data/faq/faq.md +431 -0
- data/lib/sqlite3/version.rb +4 -4
- data/ports/archives/sqlite-autoconf-3380500.tar.gz +0 -0
- data/test/helper.rb +5 -3
- data/test/test_database.rb +13 -6
- data/test/test_sqlite3.rb +4 -0
- metadata +40 -84
- data/CHANGELOG.rdoc +0 -333
- data/Manifest.txt +0 -59
- data/README.rdoc +0 -118
- data/Rakefile +0 -8
- data/appveyor.yml +0 -36
- data/rakelib/faq.rake +0 -9
- data/rakelib/gem.rake +0 -40
- data/rakelib/native.rake +0 -59
- data/rakelib/vendor_sqlite3.rake +0 -108
- data/setup.rb +0 -1333
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ed713801ba79b79993138caebecbabd8e35d54a994815f322cbc4b8398b2ef2
|
4
|
+
data.tar.gz: 653775fbf104ffd0eaaba5f9aa756a6c3c71bde33c1b9950b4d2d702cab6f685
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9754199a5d217d25a61195ee3a51b8a50d8e08fe6045826361206fcbb4fe48739fa097d6d9858dd559d138daad9bb3797fef50b74649203239c24d0c1e2cac7
|
7
|
+
data.tar.gz: 30315a3532555df4928d5c8c91193d9fa8453fae671cdd135484b15205023fd4f44347f5ec32642818456ef5b9720fbf88b91fbf70c97e1e4ece6d6c45e92bb2
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
# API Changes
|
2
2
|
|
3
3
|
* SQLite3::Database#execute only accepts an array for bind parameters.
|
4
4
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
sometimes important change in behavior.
|
9
9
|
|
10
10
|
83882d2208ed189361617d5ab8532a325aaf729d
|
11
|
-
|
11
|
+
|
12
12
|
* SQLite3::Database#trace now takes either a block or an object that responds
|
13
13
|
to "call". The previous implementation passed around a VALUE that was cast
|
14
14
|
to a void *. This is dangerous because the value could get garbage collected
|
@@ -30,7 +30,7 @@
|
|
30
30
|
* test/test_tc_database.rb was removed because we no longer use the Driver
|
31
31
|
design pattern.
|
32
32
|
|
33
|
-
|
33
|
+
# Garbage Collection Strategy
|
34
34
|
|
35
35
|
All statements keep pointers back to their respective database connections.
|
36
36
|
The @connection instance variable on the Statement handle keeps the database
|
@@ -47,4 +47,3 @@ collected. So, it is possible that a connection and a statement are up for
|
|
47
47
|
garbage collection. If the database connection were to be free'd before the
|
48
48
|
statement, then boom. Instead we'll be conservative and free unclosed
|
49
49
|
statements when the connection is terminated.
|
50
|
-
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,419 @@
|
|
1
|
+
# sqlite3-ruby Changelog
|
2
|
+
|
3
|
+
## 1.5.0 / unreleased
|
4
|
+
|
5
|
+
### Packaging
|
6
|
+
|
7
|
+
#### Faster, more reliable installation
|
8
|
+
|
9
|
+
Native (precompiled) gems are available for Ruby 2.6, 2.7, 3.0, and 3.1 on all these platforms:
|
10
|
+
|
11
|
+
- `aarch64-linux`
|
12
|
+
- `arm-linux`
|
13
|
+
- `arm64-darwin`
|
14
|
+
- `x64-mingw32` and `x64-mingw-ucrt`
|
15
|
+
- `x86-linux`
|
16
|
+
- `x86_64-darwin`
|
17
|
+
- `x86_64-linux`
|
18
|
+
|
19
|
+
If you are using one of these Ruby versions on one of these platforms, the native gem is the recommended way to install sqlite3-ruby.
|
20
|
+
|
21
|
+
See [the README](https://github.com/sparklemotion/sqlite3-ruby#native-gems-recommended) for more information.
|
22
|
+
|
23
|
+
|
24
|
+
#### More consistent developer experience
|
25
|
+
|
26
|
+
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.0 by default.
|
27
|
+
|
28
|
+
Defaulting to a consistent version of sqlite across all systems means that your development environment behaves exactly like your production environment, and you have access to the latest and greatest features of sqlite.
|
29
|
+
|
30
|
+
You can opt-out of the packaged version of sqlite (and use your system-installed library as in versions < 1.5.0). See [the README](https://github.com/sparklemotion/sqlite3-ruby#avoiding-the-precompiled-native-gem) for more information.
|
31
|
+
|
32
|
+
[Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_0.html)
|
33
|
+
|
34
|
+
|
35
|
+
### Rubies and Platforms
|
36
|
+
|
37
|
+
* TruffleRuby is supported.
|
38
|
+
* Apple Silicon is supported (M1, arm64-darwin).
|
39
|
+
|
40
|
+
|
41
|
+
### Added
|
42
|
+
|
43
|
+
* `SQLite3::SQLITE_LOADED_VERSION` contains the version string of the sqlite3 library that is dynamically loaded (compare to `SQLite3::SQLITE_VERSION` which is the version at compile-time).
|
44
|
+
|
45
|
+
|
46
|
+
## 1.4.4 / 2022-06-14
|
47
|
+
|
48
|
+
### Fixes
|
49
|
+
|
50
|
+
* Compilation no longer fails against SQLite3 versions < 3.29.0. This issue was introduced in v1.4.3. [#324] (Thank you, @r6e!)
|
51
|
+
|
52
|
+
|
53
|
+
## 1.4.3 / 2022-05-25
|
54
|
+
|
55
|
+
### Enhancements
|
56
|
+
|
57
|
+
* Disable non-standard support for double-quoted string literals via the `:strict` option. [#317] (Thank you, @casperisfine!)
|
58
|
+
* Column type names are now explicitly downcased on platforms where they may have been in shoutcaps. [#315] (Thank you, @petergoldstein!)
|
59
|
+
* Support File or Pathname arguments to `Database.new`. [#283] (Thank you, @yb66!)
|
60
|
+
* Support building on MSVC. [#285] (Thank you, @jmarrec!)
|
61
|
+
|
62
|
+
|
63
|
+
## 1.4.2 / 2019-12-18
|
64
|
+
|
65
|
+
* Travis: Drop unused setting "sudo: false"
|
66
|
+
* The taint mechanism will be deprecated in Ruby 2.7
|
67
|
+
* Fix Ruby 2.7 rb_check_safe_obj warnings
|
68
|
+
* Update travis config
|
69
|
+
|
70
|
+
|
71
|
+
## 1.4.1
|
72
|
+
|
73
|
+
* Don't mandate dl functions for the extention build
|
74
|
+
* bumping version
|
75
|
+
|
76
|
+
|
77
|
+
## 1.4.0
|
78
|
+
|
79
|
+
### Enhancements
|
80
|
+
|
81
|
+
* Better aggregator support
|
82
|
+
|
83
|
+
### Bugfixes
|
84
|
+
|
85
|
+
* Various
|
86
|
+
|
87
|
+
|
88
|
+
## 1.3.13
|
89
|
+
|
90
|
+
### Enhancements
|
91
|
+
|
92
|
+
* Support SQLite flags when defining functions
|
93
|
+
* Add definition for SQLITE_DETERMINISTIC flag
|
94
|
+
|
95
|
+
|
96
|
+
## 1.3.12
|
97
|
+
|
98
|
+
### Bugfixes
|
99
|
+
|
100
|
+
* OS X install will default to homebrew if available. Fixes #195
|
101
|
+
|
102
|
+
|
103
|
+
## 1.3.11 / 2015-10-10
|
104
|
+
|
105
|
+
### Enhancements
|
106
|
+
|
107
|
+
* Windows: build against SQLite 3.8.11.1
|
108
|
+
|
109
|
+
### Internal
|
110
|
+
|
111
|
+
* Use rake-compiler-dock to build Windows binaries. Pull #159 [larskanis]
|
112
|
+
* Expand Ruby versions being tested for Travis and AppVeyor
|
113
|
+
|
114
|
+
|
115
|
+
## 1.3.10 / 2014-10-30
|
116
|
+
|
117
|
+
### Enhancements
|
118
|
+
|
119
|
+
* Windows: build against SQLite 3.8.6. Closes #135 [Hubro]
|
120
|
+
|
121
|
+
|
122
|
+
## 1.3.9 / 2014-02-25
|
123
|
+
|
124
|
+
### Bugfixes
|
125
|
+
|
126
|
+
* Reset exception message. Closes #80
|
127
|
+
* Reduce warnings due unused pointers. Closes #89
|
128
|
+
* Add BSD-3 license reference to gemspec. Refs #99 and #106
|
129
|
+
|
130
|
+
|
131
|
+
## 1.3.8 / 2013-08-17
|
132
|
+
|
133
|
+
### Enhancements
|
134
|
+
|
135
|
+
* Windows: build against SQLite 3.7.17
|
136
|
+
|
137
|
+
### Bugfixes
|
138
|
+
|
139
|
+
* Reset exception message. Closes #80
|
140
|
+
* Correctly convert BLOB values to Ruby. Closes #65
|
141
|
+
* Add MIT license reference to gemspec. Closes #99
|
142
|
+
* Remove unused pointer. Closes #89
|
143
|
+
|
144
|
+
### Internal
|
145
|
+
|
146
|
+
* Backport improvements in cross compilation for Windows
|
147
|
+
* Use of Minitest for internal tests
|
148
|
+
* Use Gemfile (generated by Hoe) to deal with dependencies
|
149
|
+
* Cleanup Travis CI
|
150
|
+
|
151
|
+
|
152
|
+
## 1.3.7 / 2013-01-11
|
153
|
+
|
154
|
+
### Bugfixes
|
155
|
+
|
156
|
+
* Closing a bad statement twice will not segv.
|
157
|
+
* Aggregate handlers are initialized on each query. Closes #44
|
158
|
+
|
159
|
+
### Internal
|
160
|
+
|
161
|
+
* Unset environment variables that could affect cross compilation.
|
162
|
+
|
163
|
+
|
164
|
+
## 1.3.6 / 2012-04-16
|
165
|
+
|
166
|
+
### Enhancements
|
167
|
+
|
168
|
+
* Windows: build against SQLite 3.7.11
|
169
|
+
* Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
|
170
|
+
* Added SQLite3::ResultSet#next_hash for fetching one row as a hash.
|
171
|
+
|
172
|
+
### Bugfixes
|
173
|
+
|
174
|
+
* Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
|
175
|
+
* Protect parameters to custom functions from being garbage collected too
|
176
|
+
soon. Fixes #60. Thanks hirataya!
|
177
|
+
* Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
|
178
|
+
Fixes #35.
|
179
|
+
* Fix double definition error caused by defining sqlite3_int64/uint64.
|
180
|
+
* Fix suspicious version regexp.
|
181
|
+
|
182
|
+
### Deprecations
|
183
|
+
|
184
|
+
* ArrayWithTypesAndFields#types is deprecated and the class will be removed
|
185
|
+
in version 2.0.0. Please use the `types` method on the ResultSet class
|
186
|
+
that created this object.
|
187
|
+
* ArrayWithTypesAndFields#fields is deprecated and the class will be removed
|
188
|
+
in version 2.0.0. Please use the `columns` method on the ResultSet class
|
189
|
+
that created this object.
|
190
|
+
* The ArrayWithTypesAndFields class will be removed in 2.0.0
|
191
|
+
* The ArrayWithTypes class will be removed in 2.0.0
|
192
|
+
* HashWithTypesAndFields#types is deprecated and the class will be removed
|
193
|
+
in version 2.0.0. Please use the `types` method on the ResultSet class
|
194
|
+
that created this object.
|
195
|
+
* HashWithTypesAndFields#fields is deprecated and the class will be removed
|
196
|
+
in version 2.0.0. Please use the `columns` method on the ResultSet class
|
197
|
+
that created this object.
|
198
|
+
|
199
|
+
|
200
|
+
## 1.3.5 / 2011-12-03 - ZOMG Holidays are here Edition!
|
201
|
+
|
202
|
+
### Enhancements
|
203
|
+
|
204
|
+
* Windows: build against SQLite 3.7.9
|
205
|
+
* Static: enable SQLITE_ENABLE_COLUMN_METADATA
|
206
|
+
* Added Statement#clear_bindings! to set bindings back to nil
|
207
|
+
|
208
|
+
### Bugfixes
|
209
|
+
|
210
|
+
* Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
|
211
|
+
* Database error is not reset, so don't check it in Statement#reset!
|
212
|
+
* Remove conditional around Bignum statement bindings.
|
213
|
+
Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.
|
214
|
+
|
215
|
+
### Internal
|
216
|
+
|
217
|
+
* Use proper endianness when testing database connection with UTF-16.
|
218
|
+
Fixes #40. Fixes #51
|
219
|
+
* Use -fPIC for static compilation when host is x86_64.
|
220
|
+
|
221
|
+
|
222
|
+
## 1.3.4 / 2011-07-25
|
223
|
+
|
224
|
+
### Enhancements
|
225
|
+
|
226
|
+
* Windows: build against SQLite 3.7.7.1
|
227
|
+
* Windows: build static binaries that do not depend on sqlite3.dll be
|
228
|
+
installed anymore
|
229
|
+
|
230
|
+
### Bugfixes
|
231
|
+
|
232
|
+
* Backup API is conditionally required so that older libsqlite3 can be used.
|
233
|
+
Thanks Hongli Lai.
|
234
|
+
* Fixed segmentation fault when nil is passed to SQLite3::Statement.new
|
235
|
+
* Fix extconf's hardcoded path that affected installation on certain systems.
|
236
|
+
|
237
|
+
|
238
|
+
## 1.3.3 / 2010-01-16
|
239
|
+
|
240
|
+
### Bugfixes
|
241
|
+
|
242
|
+
* Abort on installation if sqlite3_backup_init is missing. Fixes #19
|
243
|
+
* Gem has been renamed to 'sqlite3'. Please use `gem install sqlite3`
|
244
|
+
|
245
|
+
|
246
|
+
## 1.3.2 / 2010-10-30 / RubyConf Uruguay Edition!
|
247
|
+
|
248
|
+
### Enhancements
|
249
|
+
|
250
|
+
* Windows: build against 3.7.3 version of SQLite3
|
251
|
+
* SQLite3::Database can now be open as readonly
|
252
|
+
|
253
|
+
db = SQLite3::Database.new('my.db', :readonly => true)
|
254
|
+
|
255
|
+
* Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]
|
256
|
+
|
257
|
+
### Bugfixes
|
258
|
+
|
259
|
+
* type_translation= works along with Database#execute and a block
|
260
|
+
* defined functions are kept in a hash to prevent GC. #7
|
261
|
+
* Removed GCC specific flags from extconf.
|
262
|
+
|
263
|
+
### Deprecations
|
264
|
+
|
265
|
+
* SQLite3::Database#type_translation= will be deprecated in the future with
|
266
|
+
no replacement.
|
267
|
+
* SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the
|
268
|
+
replacement.
|
269
|
+
|
270
|
+
|
271
|
+
## 1.3.1 / 2010-07-09
|
272
|
+
|
273
|
+
### Enhancements
|
274
|
+
|
275
|
+
* Custom collations may be defined using SQLite3::Database#collation
|
276
|
+
|
277
|
+
### Bugfixes
|
278
|
+
|
279
|
+
* Statements returning 0 columns are automatically stepped. [RF #28308]
|
280
|
+
* SQLite3::Database#encoding works on 1.8 and 1.9
|
281
|
+
|
282
|
+
|
283
|
+
## 1.3.0 / 2010-06-06
|
284
|
+
|
285
|
+
### Enhancements
|
286
|
+
|
287
|
+
* Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
|
288
|
+
See API_CHANGES document for details.
|
289
|
+
This closes: Bug #27300, Bug #27241, Patch #16020
|
290
|
+
* Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
|
291
|
+
* Added support for type translations [tenderlove]
|
292
|
+
|
293
|
+
@db.translator.add_translator('sometime') do |type, thing|
|
294
|
+
'output' # this will be returned as value for that column
|
295
|
+
end
|
296
|
+
|
297
|
+
### Experimental
|
298
|
+
|
299
|
+
* Added API to access and load extensions. [kashif]
|
300
|
+
These functions maps directly into SQLite3 own enable_load_extension()
|
301
|
+
and load_extension() C-API functions. See SQLite3::Database API documentation for details.
|
302
|
+
This closes: Patches #9178
|
303
|
+
|
304
|
+
### Bugfixes
|
305
|
+
|
306
|
+
* Corrected gem dependencies (runtime and development)
|
307
|
+
* Fixed threaded tests [Alexey Borzenkov]
|
308
|
+
* Removed GitHub gemspec
|
309
|
+
* Fixed "No definition for" warnings from RDoc
|
310
|
+
* Generate zip and tgz files for releases
|
311
|
+
* Added Luis Lavena as gem Author (maintainer)
|
312
|
+
* Prevent mkmf interfere with Mighty Snow Leopard
|
313
|
+
* Allow extension compilation search for common lib paths [kashif]
|
314
|
+
(lookup /usr/local, /opt/local and /usr)
|
315
|
+
* Corrected extension compilation under MSVC [romuloceccon]
|
316
|
+
* Define load_extension functionality based on availability [tenderlove]
|
317
|
+
* Deprecation notices for Database#query. Fixes RF #28192
|
318
|
+
|
319
|
+
|
320
|
+
## 1.3.0.beta.2 / 2010-05-15
|
321
|
+
|
322
|
+
### Enhancements
|
323
|
+
|
324
|
+
* Added support for type translations [tenderlove]
|
325
|
+
|
326
|
+
@db.translator.add_translator('sometime') do |type, thing|
|
327
|
+
'output' # this will be returned as value for that column
|
328
|
+
end
|
329
|
+
|
330
|
+
### Bugfixes
|
331
|
+
|
332
|
+
* Allow extension compilation search for common lib paths [kashif]
|
333
|
+
(lookup /usr/local, /opt/local and /usr)
|
334
|
+
* Corrected extension compilation under MSVC [romuloceccon]
|
335
|
+
* Define load_extension functionality based on availability [tenderlove]
|
336
|
+
* Deprecation notices for Database#query. Fixes RF #28192
|
337
|
+
|
338
|
+
|
339
|
+
## 1.3.0.beta.1 / 2010-05-10
|
340
|
+
|
341
|
+
### Enhancements
|
342
|
+
|
343
|
+
* Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
|
344
|
+
See API_CHANGES document for details.
|
345
|
+
This closes: Bug #27300, Bug #27241, Patch #16020
|
346
|
+
* Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
|
347
|
+
|
348
|
+
### Experimental
|
349
|
+
|
350
|
+
* Added API to access and load extensions. [kashif]
|
351
|
+
These functions maps directly into SQLite3 own enable_load_extension()
|
352
|
+
and load_extension() C-API functions. See SQLite3::Database API documentation for details.
|
353
|
+
This closes: Patches #9178
|
354
|
+
|
355
|
+
### Bugfixes
|
356
|
+
|
357
|
+
* Corrected gem dependencies (runtime and development)
|
358
|
+
* Fixed threaded tests [Alexey Borzenkov]
|
359
|
+
* Removed GitHub gemspec
|
360
|
+
* Fixed "No definition for" warnings from RDoc
|
361
|
+
* Generate zip and tgz files for releases
|
362
|
+
* Added Luis Lavena as gem Author (maintainer)
|
363
|
+
* Prevent mkmf interfere with Mighty Snow Leopard
|
364
|
+
|
365
|
+
|
366
|
+
## 1.2.5 / 2009-07-25
|
367
|
+
|
368
|
+
* Check for illegal nil before executing SQL [Erik Veenstra]
|
369
|
+
* Switch to Hoe for gem task management and packaging.
|
370
|
+
* Advertise rake-compiler as development dependency.
|
371
|
+
* Build gem binaries for Windows.
|
372
|
+
* Improved Ruby 1.9 support compatibility.
|
373
|
+
* Taint returned values. Patch #20325.
|
374
|
+
* Database.open and Database.new now take an optional block [Gerrit Kaiser]
|
375
|
+
|
376
|
+
|
377
|
+
## 1.2.4.1 (internal) / 2009-07-05
|
378
|
+
|
379
|
+
* Check for illegal nil before executing SQL [Erik Veenstra]
|
380
|
+
* Switch to Hoe for gem task management and packaging.
|
381
|
+
* Advertise rake-compiler as development dependency.
|
382
|
+
* Build gem binaries for Windows.
|
383
|
+
* Improved Ruby 1.9 support compatibility.
|
384
|
+
|
385
|
+
|
386
|
+
## 1.2.4 / 2008-08-27
|
387
|
+
|
388
|
+
* Package the updated C file for source builds. [Jamis Buck]
|
389
|
+
|
390
|
+
|
391
|
+
## 1.2.3 / 2008-08-26
|
392
|
+
|
393
|
+
* Fix incorrect permissions on database.rb and translator.rb [Various]
|
394
|
+
* Avoid using Object#extend for greater speedups [Erik Veenstra]
|
395
|
+
* Ruby 1.9 compatibility tweaks for Array#zip [jimmy88@gmail.com]
|
396
|
+
* Fix linking against Ruby 1.8.5 [Rob Holland <rob@inversepath.com>]
|
397
|
+
|
398
|
+
|
399
|
+
## 1.2.2 / 2008-05-31
|
400
|
+
|
401
|
+
* Make the table_info method adjust the returned default value for the rows
|
402
|
+
so that the sqlite3 change in 3.3.8 and greater can be handled
|
403
|
+
transparently [Jamis Buck <jamis@37signals.com>]
|
404
|
+
* Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>]
|
405
|
+
* Various performance enhancements [thanks Erik Veenstra]
|
406
|
+
* Correct busy_handler documentation [Rob Holland <rob@inversepath.com>]
|
407
|
+
* Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>]
|
408
|
+
* Work around a quirk in SQLite's error reporting by calling sqlite3_reset
|
409
|
+
to produce a more informative error code upon a failure from
|
410
|
+
sqlite3_step. [Rob Holland <rob@inversepath.com>]
|
411
|
+
* Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>]
|
412
|
+
* Be more granular with time/data translation [Rob Holland <rob@inversepath.com>]
|
413
|
+
* Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>]
|
414
|
+
* Check for the rt library and fdatasync so we link against that when
|
415
|
+
needed [Rob Holland <rob@inversepath.com>]
|
416
|
+
* Rename data structures to avoid collision on win32. based on patch
|
417
|
+
by: Luis Lavena [Rob Holland <rob@inversepath.com>]
|
418
|
+
* Add test for defaults [Daniel Rodríguez Troitiño]
|
419
|
+
* Correctly unquote double-quoted pragma defaults [Łukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# Contributing to sqlite3-ruby
|
2
|
+
|
3
|
+
**This document is a work-in-progress.**
|
4
|
+
|
5
|
+
This doc is a short introduction on how to modify and maintain the sqlite3-ruby gem.
|
6
|
+
|
7
|
+
|
8
|
+
## Building gems
|
9
|
+
|
10
|
+
As a prerequisite please make sure you have `docker` correctly installed, so that you're able to cross-compile the native gems.
|
11
|
+
|
12
|
+
Run `bin/build-gems` which will package gems for all supported platforms, and run some basic sanity tests on those packages using `bin/test-gem-set` and `bin/test-gem-file-contents`.
|
13
|
+
|
14
|
+
|
15
|
+
## Making a release
|
16
|
+
|
17
|
+
A quick checklist:
|
18
|
+
|
19
|
+
- [ ] make sure CI is green!
|
20
|
+
- [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
|
21
|
+
- [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
|
22
|
+
- [ ] run `bin/build-gems` and make sure it completes and all the tests pass
|
23
|
+
- [ ] `for g in gems/*.gem ; do gem push $g ; done`
|
24
|
+
- [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
|
data/Gemfile
CHANGED
@@ -1,20 +1,3 @@
|
|
1
|
-
|
1
|
+
source "https://rubygems.org"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
source "https://rubygems.org/"
|
6
|
-
|
7
|
-
|
8
|
-
gem "minitest", "~>5.11", :group => [:development, :test]
|
9
|
-
gem "rake-compiler", "~>1.0", :group => [:development, :test]
|
10
|
-
gem "rake-compiler-dock", "~>0.6.0", :group => [:development, :test]
|
11
|
-
gem "mini_portile2", "~>2.0", :group => [:development, :test]
|
12
|
-
gem "hoe-bundler", "~>1.0", :group => [:development, :test]
|
13
|
-
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
|
14
|
-
gem "rdoc", ">=4.0", "<6", :group => [:development, :test]
|
15
|
-
|
16
|
-
# hoe versions >= 3.19.0 are incompatible with Ruby 2.0 and earlier,
|
17
|
-
# but the gemspec does not indicate so...
|
18
|
-
gem "hoe", (RUBY_VERSION < "2.1" ? "3.18.1" : "~>3.20"), :group => [:development, :test]
|
19
|
-
|
20
|
-
# vim: syntax=ruby
|
3
|
+
gemspec
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Vendored Dependency Licenses
|
2
|
+
|
3
|
+
The library `sqlite3-ruby` (which lives at https://github.com/sparklemotion/sqlite3-ruby) may include the source code for `sqlite` (which lives at https://www.sqlite.org/)
|
4
|
+
|
5
|
+
`sqlite` source code is licensed under the public domain:
|
6
|
+
|
7
|
+
> https://www.sqlite.org/copyright.html
|
8
|
+
|
9
|
+
The license terms shipped with `sqlite` are included here for your convenience:
|
10
|
+
|
11
|
+
```
|
12
|
+
The author disclaims copyright to this source code. In place of
|
13
|
+
a legal notice, here is a blessing:
|
14
|
+
|
15
|
+
May you do good and not evil.
|
16
|
+
May you find forgiveness for yourself and forgive others.
|
17
|
+
May you share freely, never taking more than you give.
|
18
|
+
```
|
19
|
+
|
20
|
+
Note that these license terms do not apply to the `sqlite3-ruby` library itself.
|