do_sqlite3 0.10.12-x86-mingw32 → 0.10.13-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ChangeLog.markdown +4 -0
- data/README.markdown +5 -3
- data/Rakefile +1 -1
- data/lib/do_sqlite3/1.8/do_sqlite3.so +0 -0
- data/lib/do_sqlite3/1.9/do_sqlite3.so +0 -0
- data/lib/do_sqlite3/2.0/do_sqlite3.so +0 -0
- data/lib/do_sqlite3/version.rb +1 -1
- data/tasks/compile.rake +4 -2
- data/tasks/release.rake +1 -1
- data/tasks/retrieve.rake +2 -2
- metadata +20 -39
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA512:
|
3
|
+
metadata.gz: b94f4bf7af420e790f49d3507c256d40379fe8bfc99d56911d93a1423f32ff09cee37875431c98bb2c431afdcfd52d0951d1849c32545aae7dd589a62a5dc0bc
|
4
|
+
data.tar.gz: dc8b0db9bb54b210fc358ffd7f2115d3f12f0ea519bc3d262ba7d73dac6b614bcc236951bbc25f01b3816b0c4986b28bfb8ddd6118d0153c30a09eebf63fa3b4
|
5
|
+
SHA1:
|
6
|
+
metadata.gz: f8d3e16e6f927b2d3530e5940fc13d953a8623bf
|
7
|
+
data.tar.gz: c9a829a5d81f5ad9cd1d72cc4cffc611bce0ab2c
|
data/ChangeLog.markdown
CHANGED
data/README.markdown
CHANGED
@@ -14,9 +14,11 @@ This driver implements the DataObjects API for the SQLite3 relational database.
|
|
14
14
|
|
15
15
|
An example of usage:
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
```ruby
|
18
|
+
@connection = DataObjects::Connection.new("sqlite3://employees")
|
19
|
+
@reader = @connection.create_command('SELECT * FROM users').execute_reader
|
20
|
+
@reader.next!
|
21
|
+
```
|
20
22
|
|
21
23
|
## Requirements
|
22
24
|
|
data/Rakefile
CHANGED
@@ -15,7 +15,7 @@ JRUBY = RUBY_PLATFORM =~ /java/
|
|
15
15
|
IRONRUBY = defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ironruby'
|
16
16
|
WINDOWS = Gem.win_platform? || (JRUBY && ENV_JAVA['os.name'] =~ /windows/i)
|
17
17
|
SUDO = WINDOWS ? '' : ('sudo' unless ENV['SUDOLESS'])
|
18
|
-
BINARY_VERSION = '
|
18
|
+
BINARY_VERSION = '3071700'
|
19
19
|
|
20
20
|
CLEAN.include(%w[ {tmp,pkg}/ **/*.{o,so,bundle,jar,log,a,gem,dSYM,obj,pdb,exp,DS_Store,rbc,db} ext/do_sqlite3/Makefile ext-java/target ])
|
21
21
|
|
Binary file
|
Binary file
|
Binary file
|
data/lib/do_sqlite3/version.rb
CHANGED
data/tasks/compile.rake
CHANGED
@@ -17,6 +17,8 @@ begin
|
|
17
17
|
ext.cross_compile = true
|
18
18
|
ext.cross_platform = ['x86-mingw32', 'x86-mswin32-60']
|
19
19
|
ext.cross_config_options << "--with-sqlite3-dir=#{sqlite3_lib}"
|
20
|
+
ext.cross_config_options << "--with-sqlite3-include=#{sqlite3_lib}/include"
|
21
|
+
ext.cross_config_options << "--with-sqlite3-lib=#{sqlite3_lib}/lib"
|
20
22
|
|
21
23
|
ext.cross_compiling do |gemspec|
|
22
24
|
gemspec.post_install_message = <<-POST_INSTALL_MESSAGE
|
@@ -30,7 +32,7 @@ begin
|
|
30
32
|
At the time of building this gem, the necessary DLL files where available
|
31
33
|
in the following download:
|
32
34
|
|
33
|
-
http://www.sqlite.org/
|
35
|
+
http://www.sqlite.org/sqlite-dll-win32-x86-#{BINARY_VERSION}.zip
|
34
36
|
|
35
37
|
You can put the sqlite3.dll available in this package in your Ruby bin
|
36
38
|
directory, for example C:\\Ruby\\bin
|
@@ -55,7 +57,7 @@ begin
|
|
55
57
|
ext.classpath = '../do_jdbc/lib/do_jdbc_internal.jar'
|
56
58
|
ext.java_compiling do |gem|
|
57
59
|
gem.add_dependency 'jdbc-sqlite3', '>=3.5.8'
|
58
|
-
gem.add_dependency 'do_jdbc', '0.10.
|
60
|
+
gem.add_dependency 'do_jdbc', '0.10.13'
|
59
61
|
end
|
60
62
|
end
|
61
63
|
rescue LoadError
|
data/tasks/release.rake
CHANGED
data/tasks/retrieve.rake
CHANGED
@@ -33,7 +33,7 @@ begin
|
|
33
33
|
|
34
34
|
# download amalgamation BINARY_VERSION (for include files)
|
35
35
|
file "vendor/sqlite-amalgamation-#{BINARY_VERSION}.zip" => ['vendor'] do |t|
|
36
|
-
url = "http://www.sqlite.org/#{File.basename(t.name)}"
|
36
|
+
url = "http://www.sqlite.org/#{Date.today.year}/#{File.basename(t.name)}"
|
37
37
|
when_writing "downloading #{t.name}" do
|
38
38
|
cd File.dirname(t.name) do
|
39
39
|
system "wget -c #{url} || curl -L -C - -O #{url}"
|
@@ -43,7 +43,7 @@ begin
|
|
43
43
|
|
44
44
|
# download dll binaries
|
45
45
|
file "vendor/sqlite-dll-win32-x86-#{BINARY_VERSION}.zip" => ['vendor'] do |t|
|
46
|
-
url = "http://www.sqlite.org/#{File.basename(t.name)}"
|
46
|
+
url = "http://www.sqlite.org/#{Date.today.year}/#{File.basename(t.name)}"
|
47
47
|
when_writing "downloading #{t.name}" do
|
48
48
|
cd File.dirname(t.name) do
|
49
49
|
system "wget -c #{url} || curl -L -C - -O #{url}"
|
metadata
CHANGED
@@ -1,12 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: do_sqlite3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 0
|
7
|
-
- 10
|
8
|
-
- 12
|
9
|
-
version: 0.10.12
|
4
|
+
version: 0.10.13
|
10
5
|
platform: x86-mingw32
|
11
6
|
authors:
|
12
7
|
- Dirkjan Bussink
|
@@ -14,49 +9,38 @@ autorequire:
|
|
14
9
|
bindir: bin
|
15
10
|
cert_chain: []
|
16
11
|
|
17
|
-
date: 2013-
|
18
|
-
default_executable:
|
12
|
+
date: 2013-06-12 00:00:00 Z
|
19
13
|
dependencies:
|
20
14
|
- !ruby/object:Gem::Dependency
|
21
|
-
prerelease: false
|
22
|
-
type: :runtime
|
23
|
-
name: data_objects
|
24
15
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
25
16
|
requirements:
|
26
17
|
- - "="
|
27
18
|
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
|
30
|
-
- 10
|
31
|
-
- 12
|
32
|
-
version: 0.10.12
|
19
|
+
version: 0.10.13
|
20
|
+
name: data_objects
|
33
21
|
requirement: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
22
|
prerelease: false
|
36
|
-
type: :
|
37
|
-
|
23
|
+
type: :runtime
|
24
|
+
- !ruby/object:Gem::Dependency
|
38
25
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
39
26
|
requirements:
|
40
27
|
- - ~>
|
41
28
|
- !ruby/object:Gem::Version
|
42
|
-
segments:
|
43
|
-
- 2
|
44
|
-
- 5
|
45
29
|
version: "2.5"
|
30
|
+
name: rspec
|
46
31
|
requirement: *id002
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
32
|
prerelease: false
|
49
33
|
type: :development
|
50
|
-
|
34
|
+
- !ruby/object:Gem::Dependency
|
51
35
|
version_requirements: &id003 !ruby/object:Gem::Requirement
|
52
36
|
requirements:
|
53
37
|
- - ~>
|
54
38
|
- !ruby/object:Gem::Version
|
55
|
-
segments:
|
56
|
-
- 0
|
57
|
-
- 7
|
58
39
|
version: "0.7"
|
40
|
+
name: rake-compiler
|
59
41
|
requirement: *id003
|
42
|
+
prerelease: false
|
43
|
+
type: :development
|
60
44
|
description: Implements the DataObjects API for Sqlite3
|
61
45
|
email: d.bussink@gmail.com
|
62
46
|
executables: []
|
@@ -110,22 +94,24 @@ files:
|
|
110
94
|
- tasks/spec.rake
|
111
95
|
- lib/do_sqlite3/1.8/do_sqlite3.so
|
112
96
|
- lib/do_sqlite3/1.9/do_sqlite3.so
|
113
|
-
|
97
|
+
- lib/do_sqlite3/2.0/do_sqlite3.so
|
114
98
|
homepage:
|
115
99
|
licenses: []
|
116
100
|
|
101
|
+
metadata: {}
|
102
|
+
|
117
103
|
post_install_message: |+
|
118
104
|
|
119
105
|
=============================================================================
|
120
106
|
|
121
107
|
You've installed the binary version of do_sqlite3.
|
122
|
-
It was built using Sqlite3 version
|
108
|
+
It was built using Sqlite3 version 3071700.
|
123
109
|
It's recommended to use the exact same version to avoid potential issues.
|
124
110
|
|
125
111
|
At the time of building this gem, the necessary DLL files where available
|
126
112
|
in the following download:
|
127
113
|
|
128
|
-
http://www.sqlite.org/
|
114
|
+
http://www.sqlite.org/sqlite-dll-win32-x86-3071700.zip
|
129
115
|
|
130
116
|
You can put the sqlite3.dll available in this package in your Ruby bin
|
131
117
|
directory, for example C:\Ruby\bin
|
@@ -138,22 +124,17 @@ require_paths:
|
|
138
124
|
- lib
|
139
125
|
required_ruby_version: !ruby/object:Gem::Requirement
|
140
126
|
requirements:
|
141
|
-
-
|
127
|
+
- &id004
|
128
|
+
- ">="
|
142
129
|
- !ruby/object:Gem::Version
|
143
|
-
segments:
|
144
|
-
- 0
|
145
130
|
version: "0"
|
146
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
132
|
requirements:
|
148
|
-
-
|
149
|
-
- !ruby/object:Gem::Version
|
150
|
-
segments:
|
151
|
-
- 0
|
152
|
-
version: "0"
|
133
|
+
- *id004
|
153
134
|
requirements: []
|
154
135
|
|
155
136
|
rubyforge_project: dorb
|
156
|
-
rubygems_version:
|
137
|
+
rubygems_version: 2.0.3
|
157
138
|
signing_key:
|
158
139
|
specification_version: 3
|
159
140
|
summary: DataObjects Sqlite3 Driver
|