jdbc-sqlite3 3.8.7 → 3.8.10.1
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 +4 -4
- data/History.txt +4 -0
- data/Rakefile +1 -0
- data/jdbc-sqlite3.gemspec +21 -0
- data/lib/jdbc/sqlite3/version.rb +1 -1
- data/lib/sqlite-jdbc-3.8.10.1.jar +0 -0
- metadata +8 -6
- data/lib/sqlite-jdbc-3.7.2.jar +0 -0
- data/lib/sqlite-jdbc-3.8.7.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c905640b45c048804cb14a8e2fcfac23d0c280c6
|
|
4
|
+
data.tar.gz: 9edd94e3e08b9497d208eeb2b66bcbcbd3696b22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52b5fb6f0559e87283ac732495aa367a7189f6a9b5d4ca0a1e052d20ede067fba7af24692f2fe91634c62dfbfb9ee17c3b5804d35ef27fde754a56fd60e67246
|
|
7
|
+
data.tar.gz: 89f5e02ba73510903ff5603dfdbfefec7bbd507c50d30d342b3aeb747ed540fda2340d5421de0e1d5e170a152f1af8f8c7c16f5e7a781c82806eee0408cc8f4c
|
data/History.txt
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$LOAD_PATH << File.expand_path('../lib', __FILE__)
|
|
3
|
+
require 'jdbc/sqlite3/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |gem|
|
|
6
|
+
gem.name = %q{jdbc-sqlite3}
|
|
7
|
+
gem.version = Jdbc::SQLite3::VERSION
|
|
8
|
+
|
|
9
|
+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
|
|
10
|
+
gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
|
|
11
|
+
gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-sqlite3'
|
|
12
|
+
gem.licenses = ['Apache-2']
|
|
13
|
+
|
|
14
|
+
Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
|
|
15
|
+
|
|
16
|
+
gem.rdoc_options = ["--main", "README.md"]
|
|
17
|
+
gem.require_paths = ["lib"]
|
|
18
|
+
|
|
19
|
+
gem.summary = %q{SQLite3 for JRuby, includes SQLite native libraries as well as the JDBC driver.}
|
|
20
|
+
gem.description = %q{Install this gem `require 'jdbc/sqlite3'` and invoke `Jdbc::SQLite3.load_driver` within JRuby to load the driver.}
|
|
21
|
+
end
|
data/lib/jdbc/sqlite3/version.rb
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jdbc-sqlite3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.8.
|
|
4
|
+
version: 3.8.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Install this gem `require 'jdbc/sqlite3'` and invoke `Jdbc::SQLite3.load_driver` within JRuby to load the driver.
|
|
14
14
|
email:
|
|
@@ -19,13 +19,15 @@ executables: []
|
|
|
19
19
|
extensions: []
|
|
20
20
|
extra_rdoc_files: []
|
|
21
21
|
files:
|
|
22
|
-
-
|
|
22
|
+
- History.txt
|
|
23
23
|
- LICENSE.txt
|
|
24
|
-
-
|
|
25
|
-
-
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- jdbc-sqlite3.gemspec
|
|
26
27
|
- lib/jdbc/sqlite.rb
|
|
27
28
|
- lib/jdbc/sqlite3.rb
|
|
28
29
|
- lib/jdbc/sqlite3/version.rb
|
|
30
|
+
- lib/sqlite-jdbc-3.8.10.1.jar
|
|
29
31
|
homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-sqlite3
|
|
30
32
|
licenses:
|
|
31
33
|
- Apache-2
|
|
@@ -48,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
48
50
|
version: '0'
|
|
49
51
|
requirements: []
|
|
50
52
|
rubyforge_project:
|
|
51
|
-
rubygems_version: 2.
|
|
53
|
+
rubygems_version: 2.4.5
|
|
52
54
|
signing_key:
|
|
53
55
|
specification_version: 4
|
|
54
56
|
summary: SQLite3 for JRuby, includes SQLite native libraries as well as the JDBC driver.
|
data/lib/sqlite-jdbc-3.7.2.jar
DELETED
|
Binary file
|
data/lib/sqlite-jdbc-3.8.7.jar
DELETED
|
Binary file
|