jdbc-sqlite3 3.7.15.SNAPSHOT → 3.8.7
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/README.md +3 -3
- data/lib/jdbc/sqlite.rb +1 -0
- data/lib/jdbc/sqlite3.rb +2 -6
- data/lib/jdbc/sqlite3/version.rb +2 -2
- data/lib/sqlite-jdbc-3.7.2.jar +0 -0
- data/lib/sqlite-jdbc-3.8.7.jar +0 -0
- metadata +21 -20
- data/Rakefile +0 -18
- data/lib/sqlite-jdbc-3.7.15-SNAPSHOT.jar +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fba391feab28c6c76abb98c1c6f16a96a96edfcb
|
4
|
+
data.tar.gz: 38de58f441f7acc1b2b29e0893f3c724bd23d115
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: af1d375a860c2603af8bd66316e9824a68dfce38984c0c13334528c2749486b529def54144a70e2e9af76b5ab46efda614f640b0e9c62aab3d6a9ab26d4b9ab6
|
7
|
+
data.tar.gz: 8436d8ef4395930b16f1849c4042667036c1d057df135790d2937ae07bbae570761db233d11f7334f70ec7532ee4fe2bd15859d0afd72ab8654084959e43812e
|
data/README.md
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
SQLite JDBC driver enables Java to access SQLite database files.
|
4
4
|
|
5
|
-
SQLite JDBC library requires no configuration since all native libraries for
|
6
|
-
Windows, Mac OS X, Linux and pure-java SQLite, which works in any OS enviroment,
|
5
|
+
SQLite JDBC library requires no configuration since all native libraries for
|
6
|
+
Windows, Mac OS X, Linux and pure-java SQLite, which works in any OS enviroment,
|
7
7
|
are assembled into a single JAR (Java Archive) file.
|
8
8
|
|
9
9
|
For more information see http://code.google.com/p/sqlite-jdbc/
|
@@ -23,6 +23,6 @@ For backwards compatibility with older (<= **3.7.2**) versions of the gem use :
|
|
23
23
|
|
24
24
|
## Copyright
|
25
25
|
|
26
|
-
Copyright (c)
|
26
|
+
Copyright (c) 2013-2014 [The JRuby Team](https://github.com/jruby).
|
27
27
|
|
28
28
|
SQLite JDBC is distributed under the Apache License 2.0, see *LICENSE.txt*.
|
data/lib/jdbc/sqlite.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'jdbc/sqlite3'
|
data/lib/jdbc/sqlite3.rb
CHANGED
@@ -5,12 +5,7 @@ module Jdbc
|
|
5
5
|
module SQLite3
|
6
6
|
|
7
7
|
def self.driver_jar
|
8
|
-
|
9
|
-
if version.size > 3
|
10
|
-
'sqlite-jdbc-%s.%s.%s-%s.jar' % version # 3.7.15-SNAPSHOT
|
11
|
-
else
|
12
|
-
"sqlite-jdbc-#{DRIVER_VERSION}.jar" # 3.7.2
|
13
|
-
end
|
8
|
+
"sqlite-jdbc-#{DRIVER_VERSION}.jar"
|
14
9
|
end
|
15
10
|
|
16
11
|
def self.load_driver(method = :load)
|
@@ -28,4 +23,5 @@ module Jdbc
|
|
28
23
|
load_driver :require
|
29
24
|
end
|
30
25
|
end
|
26
|
+
SQLite = SQLite3 unless const_defined?(:SQLite)
|
31
27
|
end
|
data/lib/jdbc/sqlite3/version.rb
CHANGED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,30 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jdbc-sqlite3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.7
|
5
|
-
prerelease: 7
|
4
|
+
version: 3.8.7
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
7
|
+
- Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: Install this gem `require 'jdbc/sqlite3'` and invoke `Jdbc::SQLite3.load_driver` within JRuby to load the driver.
|
15
|
-
email:
|
14
|
+
email:
|
15
|
+
- nick@nicksieger.com
|
16
|
+
- ola.bini@gmail.com
|
17
|
+
- self@kares.org
|
16
18
|
executables: []
|
17
19
|
extensions: []
|
18
20
|
extra_rdoc_files: []
|
19
21
|
files:
|
20
|
-
- Rakefile
|
21
22
|
- README.md
|
22
23
|
- LICENSE.txt
|
23
|
-
- lib/sqlite-jdbc-3.7.
|
24
|
+
- lib/sqlite-jdbc-3.8.7.jar
|
25
|
+
- lib/sqlite-jdbc-3.7.2.jar
|
26
|
+
- lib/jdbc/sqlite.rb
|
24
27
|
- lib/jdbc/sqlite3.rb
|
25
28
|
- lib/jdbc/sqlite3/version.rb
|
26
|
-
homepage:
|
27
|
-
licenses:
|
29
|
+
homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-sqlite3
|
30
|
+
licenses:
|
31
|
+
- Apache-2
|
32
|
+
metadata: {}
|
28
33
|
post_install_message:
|
29
34
|
rdoc_options:
|
30
35
|
- --main
|
@@ -35,21 +40,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
40
|
requirements:
|
36
41
|
- - '>='
|
37
42
|
- !ruby/object:Gem::Version
|
38
|
-
segments:
|
39
|
-
- 0
|
40
|
-
hash: 2
|
41
43
|
version: '0'
|
42
|
-
none: false
|
43
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
45
|
requirements:
|
45
|
-
- - '
|
46
|
+
- - '>='
|
46
47
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
48
|
-
none: false
|
48
|
+
version: '0'
|
49
49
|
requirements: []
|
50
|
-
rubyforge_project:
|
51
|
-
rubygems_version: 1.
|
50
|
+
rubyforge_project:
|
51
|
+
rubygems_version: 2.1.9
|
52
52
|
signing_key:
|
53
|
-
specification_version:
|
54
|
-
summary: SQLite3
|
53
|
+
specification_version: 4
|
54
|
+
summary: SQLite3 for JRuby, includes SQLite native libraries as well as the JDBC driver.
|
55
55
|
test_files: []
|
56
|
+
has_rdoc:
|
data/Rakefile
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
require 'bundler/gem_helper'
|
2
|
-
|
3
|
-
name = Dir["*.gemspec"].first.sub('.gemspec', '')
|
4
|
-
gem_helper = Bundler::GemHelper.new(Dir.pwd, name)
|
5
|
-
def gem_helper.version_tag
|
6
|
-
"#{name}-#{version}" # override "v#{version}"
|
7
|
-
end
|
8
|
-
|
9
|
-
version = gem_helper.send(:version)
|
10
|
-
version_tag = gem_helper.version_tag
|
11
|
-
desc "Build #{name}-#{version}.gem into the pkg directory"
|
12
|
-
task('build') { gem_helper.build_gem }
|
13
|
-
|
14
|
-
desc "Build and install #{name}-#{version}.gem into system gems"
|
15
|
-
task('install') { gem_helper.install_gem }
|
16
|
-
|
17
|
-
desc "Create tag #{version_tag} build and push #{name}-#{version}.gem to Rubygems"
|
18
|
-
task('release') { gem_helper.release_gem }
|
Binary file
|