sqlite3 1.4.2 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
data/test/test_sqlite3.rb CHANGED
@@ -17,5 +17,14 @@ module SQLite3
17
17
  refute SQLite3.threadsafe?
18
18
  end
19
19
  end
20
+
21
+ def test_version_strings
22
+ skip if SQLite3::VERSION.include?("test") # see set-version-to-timestamp rake task
23
+ assert_equal(SQLite3::VERSION, SQLite3::VersionProxy::STRING)
24
+ end
25
+
26
+ def test_compiled_version_and_loaded_version
27
+ assert_equal(SQLite3::SQLITE_VERSION, SQLite3::SQLITE_LOADED_VERSION)
28
+ end
20
29
  end
21
30
  end
@@ -127,7 +127,7 @@ module SQLite3
127
127
  row = @db.execute('select * from foo')
128
128
 
129
129
  assert_equal ['hello'], row.first
130
- assert_equal row.first.types, ['BLOB']
130
+ assert_equal ['blob'], row.first.types
131
131
  end
132
132
 
133
133
  def test_bind_64
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -10,92 +10,64 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-12-18 00:00:00.000000000 Z
13
+ date: 2022-11-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: minitest
17
- requirement: !ruby/object:Gem::Requirement
18
- requirements:
19
- - - "~>"
20
- - !ruby/object:Gem::Version
21
- version: '5.13'
22
- type: :development
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- requirements:
26
- - - "~>"
27
- - !ruby/object:Gem::Version
28
- version: '5.13'
29
- - !ruby/object:Gem::Dependency
30
- name: rake-compiler
31
- requirement: !ruby/object:Gem::Requirement
32
- requirements:
33
- - - "~>"
34
- - !ruby/object:Gem::Version
35
- version: '1.0'
36
- type: :development
37
- prerelease: false
38
- version_requirements: !ruby/object:Gem::Requirement
39
- requirements:
40
- - - "~>"
41
- - !ruby/object:Gem::Version
42
- version: '1.0'
43
- - !ruby/object:Gem::Dependency
44
- name: rake-compiler-dock
16
+ name: mini_portile2
45
17
  requirement: !ruby/object:Gem::Requirement
46
18
  requirements:
47
19
  - - "~>"
48
20
  - !ruby/object:Gem::Version
49
- version: 0.6.0
50
- type: :development
21
+ version: 2.8.0
22
+ type: :runtime
51
23
  prerelease: false
52
24
  version_requirements: !ruby/object:Gem::Requirement
53
25
  requirements:
54
26
  - - "~>"
55
27
  - !ruby/object:Gem::Version
56
- version: 0.6.0
28
+ version: 2.8.0
57
29
  - !ruby/object:Gem::Dependency
58
- name: mini_portile
30
+ name: minitest
59
31
  requirement: !ruby/object:Gem::Requirement
60
32
  requirements:
61
33
  - - "~>"
62
34
  - !ruby/object:Gem::Version
63
- version: 0.6.2
35
+ version: '5.15'
64
36
  type: :development
65
37
  prerelease: false
66
38
  version_requirements: !ruby/object:Gem::Requirement
67
39
  requirements:
68
40
  - - "~>"
69
41
  - !ruby/object:Gem::Version
70
- version: 0.6.2
42
+ version: '5.15'
71
43
  - !ruby/object:Gem::Dependency
72
- name: hoe-bundler
44
+ name: rake-compiler
73
45
  requirement: !ruby/object:Gem::Requirement
74
46
  requirements:
75
47
  - - "~>"
76
48
  - !ruby/object:Gem::Version
77
- version: '1.0'
49
+ version: 1.2.0
78
50
  type: :development
79
51
  prerelease: false
80
52
  version_requirements: !ruby/object:Gem::Requirement
81
53
  requirements:
82
54
  - - "~>"
83
55
  - !ruby/object:Gem::Version
84
- version: '1.0'
56
+ version: 1.2.0
85
57
  - !ruby/object:Gem::Dependency
86
- name: hoe-gemspec
58
+ name: rake-compiler-dock
87
59
  requirement: !ruby/object:Gem::Requirement
88
60
  requirements:
89
61
  - - "~>"
90
62
  - !ruby/object:Gem::Version
91
- version: '1.0'
63
+ version: 1.2.1
92
64
  type: :development
93
65
  prerelease: false
94
66
  version_requirements: !ruby/object:Gem::Requirement
95
67
  requirements:
96
68
  - - "~>"
97
69
  - !ruby/object:Gem::Version
98
- version: '1.0'
70
+ version: 1.2.1
99
71
  - !ruby/object:Gem::Dependency
100
72
  name: rdoc
101
73
  requirement: !ruby/object:Gem::Requirement
@@ -116,38 +88,20 @@ dependencies:
116
88
  - - "<"
117
89
  - !ruby/object:Gem::Version
118
90
  version: '7'
119
- - !ruby/object:Gem::Dependency
120
- name: hoe
121
- requirement: !ruby/object:Gem::Requirement
122
- requirements:
123
- - - "~>"
124
- - !ruby/object:Gem::Version
125
- version: '3.20'
126
- type: :development
127
- prerelease: false
128
- version_requirements: !ruby/object:Gem::Requirement
129
- requirements:
130
- - - "~>"
131
- - !ruby/object:Gem::Version
132
- version: '3.20'
133
91
  description: |-
134
92
  This module allows Ruby programs to interface with the SQLite3
135
93
  database engine (http://www.sqlite.org). You must have the
136
94
  SQLite engine installed in order to build this module.
137
95
 
138
96
  Note that this module is only compatible with SQLite 3.6.16 or newer.
139
- email:
140
- - jamis@37signals.com
141
- - luislavena@gmail.com
142
- - aaron@tenderlovemaking.com
97
+ email:
143
98
  executables: []
144
99
  extensions:
145
100
  - ext/sqlite3/extconf.rb
146
101
  extra_rdoc_files:
147
- - API_CHANGES.rdoc
148
- - CHANGELOG.rdoc
149
- - Manifest.txt
150
- - README.rdoc
102
+ - API_CHANGES.md
103
+ - CHANGELOG.md
104
+ - README.md
151
105
  - ext/sqlite3/aggregator.c
152
106
  - ext/sqlite3/backup.c
153
107
  - ext/sqlite3/database.c
@@ -156,16 +110,15 @@ extra_rdoc_files:
156
110
  - ext/sqlite3/statement.c
157
111
  files:
158
112
  - ".gemtest"
159
- - ".travis.yml"
160
- - API_CHANGES.rdoc
161
- - CHANGELOG.rdoc
113
+ - API_CHANGES.md
114
+ - CHANGELOG.md
115
+ - CONTRIBUTING.md
162
116
  - ChangeLog.cvs
163
117
  - Gemfile
164
118
  - LICENSE
165
- - Manifest.txt
166
- - README.rdoc
167
- - Rakefile
168
- - appveyor.yml
119
+ - LICENSE-DEPENDENCIES
120
+ - README.md
121
+ - dependencies.yml
169
122
  - ext/sqlite3/aggregator.c
170
123
  - ext/sqlite3/aggregator.h
171
124
  - ext/sqlite3/backup.c
@@ -179,6 +132,7 @@ files:
179
132
  - ext/sqlite3/sqlite3_ruby.h
180
133
  - ext/sqlite3/statement.c
181
134
  - ext/sqlite3/statement.h
135
+ - faq/faq.md
182
136
  - faq/faq.rb
183
137
  - faq/faq.yml
184
138
  - lib/sqlite3.rb
@@ -191,11 +145,7 @@ files:
191
145
  - lib/sqlite3/translator.rb
192
146
  - lib/sqlite3/value.rb
193
147
  - lib/sqlite3/version.rb
194
- - rakelib/faq.rake
195
- - rakelib/gem.rake
196
- - rakelib/native.rake
197
- - rakelib/vendor_sqlite3.rake
198
- - setup.rb
148
+ - ports/archives/sqlite-autoconf-3400000.tar.gz
199
149
  - test/helper.rb
200
150
  - test/test_backup.rb
201
151
  - test/test_collation.rb
@@ -219,25 +169,31 @@ homepage: https://github.com/sparklemotion/sqlite3-ruby
219
169
  licenses:
220
170
  - BSD-3-Clause
221
171
  metadata:
172
+ homepage_uri: https://github.com/sparklemotion/sqlite3-ruby
173
+ bug_tracker_uri: https://github.com/sparklemotion/sqlite3-ruby/issues
174
+ documentation_uri: https://www.rubydoc.info/gems/sqlite3
175
+ changelog_uri: https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md
176
+ source_code_uri: https://github.com/sparklemotion/sqlite3-ruby
222
177
  msys2_mingw_dependencies: sqlite3
178
+ rubygems_mfa_required: 'true'
223
179
  post_install_message:
224
180
  rdoc_options:
225
181
  - "--main"
226
- - README.rdoc
182
+ - README.md
227
183
  require_paths:
228
184
  - lib
229
185
  required_ruby_version: !ruby/object:Gem::Requirement
230
186
  requirements:
231
187
  - - ">="
232
188
  - !ruby/object:Gem::Version
233
- version: 1.8.7
189
+ version: 1.9.2
234
190
  required_rubygems_version: !ruby/object:Gem::Requirement
235
191
  requirements:
236
192
  - - ">="
237
193
  - !ruby/object:Gem::Version
238
- version: 1.3.5
194
+ version: '0'
239
195
  requirements: []
240
- rubygems_version: 3.0.3
196
+ rubygems_version: 3.3.7
241
197
  signing_key:
242
198
  specification_version: 4
243
199
  summary: This module allows Ruby programs to interface with the SQLite3 database engine
data/.travis.yml DELETED
@@ -1,33 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- before_install:
4
- - gem update --system 2.7.7
5
- - gem install bundler -v 1.16.2
6
- addons:
7
- apt:
8
- packages:
9
- - libgmp-dev
10
-
11
- after_failure:
12
- - "find . -name mkmf.log -exec cat {} \\;"
13
-
14
- after_success:
15
- - "find . -name mkmf.log -exec cat {} \\;"
16
-
17
- env:
18
- - USE_MINI_PORTILE=true
19
- - USE_MINI_PORTILE=false
20
- rvm:
21
- - 1.9.3
22
- - 2.0.0
23
- - 2.1
24
- - 2.2
25
- - 2.3
26
- - 2.4
27
- - 2.5
28
- - 2.6
29
- - 2.7
30
- - ruby-head
31
- matrix:
32
- allow_failures:
33
- - env: USE_MINI_PORTILE=false
data/CHANGELOG.rdoc DELETED
@@ -1,318 +0,0 @@
1
- === 1.4.2
2
-
3
- * Travis: Drop unused setting "sudo: false"
4
- * The taint mechanism will be deprecated in Ruby 2.7
5
- * Fix Ruby 2.7 rb_check_safe_obj warnings
6
- * Update travis config
7
-
8
- === 1.4.1
9
-
10
- * Don't mandate dl functions for the extention build
11
- * bumping version
12
-
13
- === 1.4.0
14
-
15
- * Enhancements
16
- * Better aggregator support
17
-
18
- * Bugfixes
19
- * Various
20
-
21
- === 1.3.13
22
-
23
- * Enancements
24
- * Support SQLite flags when defining functions
25
- * Add definition for SQLITE_DETERMINISTIC flag
26
-
27
- === 1.3.12
28
-
29
- * Bugfixes:
30
- * OS X install will default to homebrew if available. Fixes #195
31
-
32
- === 1.3.11 / 2015-10-10
33
-
34
- * Enhancements:
35
- * Windows: build against SQLite 3.8.11.1
36
-
37
- * Internal:
38
- * Use rake-compiler-dock to build Windows binaries. Pull #159 [larskanis]
39
- * Expand Ruby versions being tested for Travis and AppVeyor
40
-
41
- === 1.3.10 / 2014-10-30
42
-
43
- * Enhancements:
44
- * Windows: build against SQLite 3.8.6. Closes #135 [Hubro]
45
-
46
- === 1.3.9 / 2014-02-25
47
-
48
- * Bugfixes:
49
- * Reset exception message. Closes #80
50
- * Reduce warnings due unused pointers. Closes #89
51
- * Add BSD-3 license reference to gemspec. Refs #99 and #106
52
-
53
- === 1.3.8 / 2013-08-17
54
-
55
- * Enhancements:
56
- * Windows: build against SQLite 3.7.17
57
-
58
- * Bugfixes:
59
- * Reset exception message. Closes #80
60
- * Correctly convert BLOB values to Ruby. Closes #65
61
- * Add MIT license reference to gemspec. Closes #99
62
- * Remove unused pointer. Closes #89
63
-
64
- * Internal:
65
- * Backport improvements in cross compilation for Windows
66
- * Use of Minitest for internal tests
67
- * Use Gemfile (generated by Hoe) to deal with dependencies
68
- * Cleanup Travis CI
69
-
70
- === 1.3.7 / 2013-01-11
71
-
72
- * Bugfixes
73
- * Closing a bad statement twice will not segv.
74
- * Aggregate handlers are initialized on each query. Closes #44
75
-
76
- * Internal
77
- * Unset environment variables that could affect cross compilation.
78
-
79
- === 1.3.6 / 2012-04-16
80
-
81
- * Enhancements
82
- * Windows: build against SQLite 3.7.11
83
- * Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
84
- * Added SQLite3::ResultSet#next_hash for fetching one row as a hash.
85
-
86
- * Bugfixes
87
- * Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
88
- * Protect parameters to custom functions from being garbage collected too
89
- soon. Fixes #60. Thanks hirataya!
90
- * Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
91
- Fixes #35.
92
- * Fix double definition error caused by defining sqlite3_int64/uint64.
93
- * Fix suspicious version regexp.
94
-
95
- * Deprecations
96
- * ArrayWithTypesAndFields#types is deprecated and the class will be removed
97
- in version 2.0.0. Please use the `types` method on the ResultSet class
98
- that created this object.
99
- * ArrayWithTypesAndFields#fields is deprecated and the class will be removed
100
- in version 2.0.0. Please use the `columns` method on the ResultSet class
101
- that created this object.
102
- * The ArrayWithTypesAndFields class will be removed in 2.0.0
103
- * The ArrayWithTypes class will be removed in 2.0.0
104
- * HashWithTypesAndFields#types is deprecated and the class will be removed
105
- in version 2.0.0. Please use the `types` method on the ResultSet class
106
- that created this object.
107
- * HashWithTypesAndFields#fields is deprecated and the class will be removed
108
- in version 2.0.0. Please use the `columns` method on the ResultSet class
109
- that created this object.
110
-
111
- === 1.3.5 / 2011-12-03 - ZOMG Holidays are here Edition!
112
-
113
- * Enhancements
114
- * Windows: build against SQLite 3.7.9
115
- * Static: enable SQLITE_ENABLE_COLUMN_METADATA
116
- * Added Statement#clear_bindings! to set bindings back to nil
117
-
118
- * Bugfixes
119
- * Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
120
- * Database error is not reset, so don't check it in Statement#reset!
121
- * Remove conditional around Bignum statement bindings.
122
- Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.
123
-
124
- * Internal
125
- * Use proper endianness when testing database connection with UTF-16.
126
- Fixes #40. Fixes #51
127
- * Use -fPIC for static compilation when host is x86_64.
128
-
129
- === 1.3.4 / 2011-07-25
130
-
131
- * Enhancements:
132
- * Windows: build against SQLite 3.7.7.1
133
- * Windows: build static binaries that do not depend on sqlite3.dll be
134
- installed anymore
135
-
136
- * Bugfixes
137
- * Backup API is conditionaly required so that older libsqlite3 can be used.
138
- Thanks Hongli Lai.
139
- * Fixed segmentation fault when nil is passed to SQLite3::Statement.new
140
- * Fix extconf's hardcoded path that affected installation on certain systems.
141
-
142
- === 1.3.3 / 2010-01-16
143
-
144
- * Bugfixes
145
- * Abort on installation if sqlite3_backup_init is missing. Fixes #19
146
- * Gem has been renamed to 'sqlite3'. Please use `gem install sqlite3`
147
-
148
- === 1.3.2 / 2010-10-30 / RubyConf Uruguay Edition!
149
-
150
- * Enhancements:
151
- * Windows: build against 3.7.3 version of SQLite3
152
- * SQLite3::Database can now be open as readonly
153
-
154
- db = SQLite3::Database.new('my.db', :readonly => true)
155
-
156
- * Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]
157
-
158
- * Bugfixes
159
- * type_translation= works along with Database#execute and a block
160
- * defined functions are kept in a hash to prevent GC. #7
161
- * Removed GCC specific flags from extconf.
162
-
163
- * DEPRECATIONS
164
- * SQLite3::Database#type_translation= will be deprecated in the future with
165
- no replacement.
166
- * SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the
167
- replacement.
168
-
169
- === 1.3.1 / 2010-07-09
170
-
171
- * Enhancements
172
- * Custom collations may be defined using SQLite3::Database#collation
173
-
174
- * Bugfixes
175
- * Statements returning 0 columns are automatically stepped. [RF #28308]
176
- * SQLite3::Database#encoding works on 1.8 and 1.9
177
-
178
- === 1.3.0 / 2010-06-06
179
-
180
- * Enhancements
181
- * Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
182
- See API_CHANGES document for details.
183
- This closes: Bug #27300, Bug #27241, Patch #16020
184
- * Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
185
- * Added support for type translations [tenderlove]
186
-
187
- @db.translator.add_translator('sometime') do |type, thing|
188
- 'output' # this will be returned as value for that column
189
- end
190
-
191
- * Experimental
192
- * Added API to access and load extensions. [kashif]
193
- These functions maps directly into SQLite3 own enable_load_extension()
194
- and load_extension() C-API functions. See SQLite3::Database API documentation for details.
195
- This closes: Patches #9178
196
-
197
- * Bugfixes
198
- * Corrected gem dependencies (runtime and development)
199
- * Fixed threaded tests [Alexey Borzenkov]
200
- * Removed GitHub gemspec
201
- * Fixed "No definition for" warnings from RDoc
202
- * Generate zip and tgz files for releases
203
- * Added Luis Lavena as gem Author (maintainer)
204
- * Prevent mkmf interfere with Mighty Snow Leopard
205
- * Allow extension compilation search for common lib paths [kashif]
206
- (lookup /usr/local, /opt/local and /usr)
207
- * Corrected extension compilation under MSVC [romuloceccon]
208
- * Define load_extension functionality based on availability [tenderlove]
209
- * Deprecation notices for Database#query. Fixes RF #28192
210
-
211
- === 1.3.0.beta.2 / 2010-05-15
212
-
213
- * Enhancements
214
- * Added support for type translations [tenderlove]
215
-
216
- @db.translator.add_translator('sometime') do |type, thing|
217
- 'output' # this will be returned as value for that column
218
- end
219
-
220
- * Bugfixes
221
- * Allow extension compilation search for common lib paths [kashif]
222
- (lookup /usr/local, /opt/local and /usr)
223
- * Corrected extension compilation under MSVC [romuloceccon]
224
- * Define load_extension functionality based on availability [tenderlove]
225
- * Deprecation notices for Database#query. Fixes RF #28192
226
-
227
- === 1.3.0.beta.1 / 2010-05-10
228
-
229
- * Enhancements
230
- * Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
231
- See API_CHANGES document for details.
232
- This closes: Bug #27300, Bug #27241, Patch #16020
233
- * Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
234
-
235
- * Experimental
236
- * Added API to access and load extensions. [kashif]
237
- These functions maps directly into SQLite3 own enable_load_extension()
238
- and load_extension() C-API functions. See SQLite3::Database API documentation for details.
239
- This closes: Patches #9178
240
-
241
- * Bugfixes
242
- * Corrected gem dependencies (runtime and development)
243
- * Fixed threaded tests [Alexey Borzenkov]
244
- * Removed GitHub gemspec
245
- * Fixed "No definition for" warnings from RDoc
246
- * Generate zip and tgz files for releases
247
- * Added Luis Lavena as gem Author (maintainer)
248
- * Prevent mkmf interfere with Mighty Snow Leopard
249
-
250
- === 1.2.5 / 25 Jul 2009
251
-
252
- * Check for illegal nil before executing SQL [Erik Veenstra]
253
- * Switch to Hoe for gem task management and packaging.
254
- * Advertise rake-compiler as development dependency.
255
- * Build gem binaries for Windows.
256
- * Improved Ruby 1.9 support compatibility.
257
- * Taint returned values. Patch #20325.
258
- * Database.open and Database.new now take an optional block [Gerrit Kaiser]
259
-
260
-
261
- === 1.2.4.1 (internal) / 5 Jul 2009
262
-
263
- * Check for illegal nil before executing SQL [Erik Veenstra]
264
- * Switch to Hoe for gem task management and packaging.
265
- * Advertise rake-compiler as development dependency.
266
- * Build gem binaries for Windows.
267
- * Improved Ruby 1.9 support compatibility.
268
-
269
-
270
- === 1.2.4 / 27 Aug 2008
271
-
272
- * Package the updated C file for source builds. [Jamis Buck]
273
-
274
-
275
- === 1.2.3 / 26 Aug 2008
276
-
277
- * Fix incorrect permissions on database.rb and translator.rb [Various]
278
-
279
- * Avoid using Object#extend for greater speedups [Erik Veenstra]
280
-
281
- * Ruby 1.9 compatibility tweaks for Array#zip [jimmy88@gmail.com]
282
-
283
- * Fix linking against Ruby 1.8.5 [Rob Holland <rob@inversepath.com>]
284
-
285
-
286
- === 1.2.2 / 31 May 2008
287
-
288
- * Make the table_info method adjust the returned default value for the rows
289
- so that the sqlite3 change in 3.3.8 and greater can be handled
290
- transparently [Jamis Buck <jamis@37signals.com>]
291
-
292
- * Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>]
293
-
294
- * Various performance enhancements [thanks Erik Veenstra]
295
-
296
- * Correct busy_handler documentation [Rob Holland <rob@inversepath.com>]
297
-
298
- * Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>]
299
-
300
- * Work around a quirk in SQLite's error reporting by calling sqlite3_reset
301
- to produce a more informative error code upon a failure from
302
- sqlite3_step. [Rob Holland <rob@inversepath.com>]
303
-
304
- * Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>]
305
-
306
- * Be more granular with time/data translation [Rob Holland <rob@inversepath.com>]
307
-
308
- * Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>]
309
-
310
- * Check for the rt library and fdatasync so we link against that when
311
- needed [Rob Holland <rob@inversepath.com>]
312
-
313
- * Rename data structures to avoid collision on win32. based on patch
314
- by: Luis Lavena [Rob Holland <rob@inversepath.com>]
315
-
316
- * Add test for defaults [Daniel Rodríguez Troitiño]
317
-
318
- * Correctly unquote double-quoted pragma defaults [Łukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
data/Manifest.txt DELETED
@@ -1,60 +0,0 @@
1
- .gemtest
2
- .travis.yml
3
- API_CHANGES.rdoc
4
- CHANGELOG.rdoc
5
- ChangeLog.cvs
6
- Gemfile
7
- LICENSE
8
- Manifest.txt
9
- README.rdoc
10
- Rakefile
11
- appveyor.yml
12
- ext/sqlite3/aggregator.c
13
- ext/sqlite3/aggregator.h
14
- ext/sqlite3/backup.c
15
- ext/sqlite3/backup.h
16
- ext/sqlite3/database.c
17
- ext/sqlite3/database.h
18
- ext/sqlite3/exception.c
19
- ext/sqlite3/exception.h
20
- ext/sqlite3/extconf.rb
21
- ext/sqlite3/sqlite3.c
22
- ext/sqlite3/sqlite3_ruby.h
23
- ext/sqlite3/statement.c
24
- ext/sqlite3/statement.h
25
- faq/faq.rb
26
- faq/faq.yml
27
- lib/sqlite3.rb
28
- lib/sqlite3/constants.rb
29
- lib/sqlite3/database.rb
30
- lib/sqlite3/errors.rb
31
- lib/sqlite3/pragmas.rb
32
- lib/sqlite3/resultset.rb
33
- lib/sqlite3/statement.rb
34
- lib/sqlite3/translator.rb
35
- lib/sqlite3/value.rb
36
- lib/sqlite3/version.rb
37
- rakelib/faq.rake
38
- rakelib/gem.rake
39
- rakelib/native.rake
40
- rakelib/vendor_sqlite3.rake
41
- setup.rb
42
- test/helper.rb
43
- test/test_backup.rb
44
- test/test_collation.rb
45
- test/test_database.rb
46
- test/test_database_flags.rb
47
- test/test_database_readonly.rb
48
- test/test_database_readwrite.rb
49
- test/test_deprecated.rb
50
- test/test_encoding.rb
51
- test/test_integration.rb
52
- test/test_integration_aggregate.rb
53
- test/test_integration_open_close.rb
54
- test/test_integration_pending.rb
55
- test/test_integration_resultset.rb
56
- test/test_integration_statement.rb
57
- test/test_result_set.rb
58
- test/test_sqlite3.rb
59
- test/test_statement.rb
60
- test/test_statement_execute.rb