jdbc-sqlite3 3.20.1 → 3.27.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69ef9589772ef46f0f465a5b6e7e3db539178eb7
4
- data.tar.gz: 67d09a2a2ec314b350657ce5d1dd2d54ada0f944
3
+ metadata.gz: 2d553d412659227da427fbe9c89b98d5da5d8efc
4
+ data.tar.gz: 045388d09d663bb7af7703167c1949be679fa4f5
5
5
  SHA512:
6
- metadata.gz: 79c97b2553beb8110c31d1f88a1d64352acfb48b2041399c03861eb240f2061191e4797c48e66f1bbe3c7721f54f11f18e2bfbb9e307f1dfbbd333ad1a043934
7
- data.tar.gz: a5bbdff1461b6f984de55760a6b11f97028a4ff865a25afe1a3d8015da0028b12ec04c1547f6c01bb8bfb52f63576b292e29c44c4b79263aaf4baf919c06c7d6
6
+ metadata.gz: 932a131e58c2d7880449ef74691b767444e0302eb50451f753872f41af683ae507de16ce9c31350d0c26daa35f9a19dc15dfbcce907e38efdc18ef2661451195
7
+ data.tar.gz: da447045420bc130ca021000733ca6eeba787cb77153b5707f4ad5e90a6ad3f01cbc3dfebdb701e7f22d063c9b69c0936b46320fcd82e0bbcaa953db13c1908b
data/README.md CHANGED
@@ -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) 2013-2015 [The JRuby Team](https://github.com/jruby).
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*.
@@ -23,5 +23,4 @@ module Jdbc
23
23
  load_driver :require
24
24
  end
25
25
  end
26
- SQLite = SQLite3 unless const_defined?(:SQLite)
27
26
  end
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module SQLite3
3
- DRIVER_VERSION = '3.20.1'
3
+ DRIVER_VERSION = '3.27.2.1'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
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.20.1
4
+ version: 3.27.2.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: 2017-11-09 00:00:00.000000000 Z
11
+ date: 2019-07-18 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,15 +19,11 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
- - History.txt
23
22
  - LICENSE.txt
24
23
  - README.md
25
- - Rakefile
26
- - jdbc-sqlite3.gemspec
27
- - lib/jdbc/sqlite.rb
28
24
  - lib/jdbc/sqlite3.rb
29
25
  - lib/jdbc/sqlite3/version.rb
30
- - lib/sqlite-jdbc-3.20.1.jar
26
+ - lib/sqlite-jdbc-3.27.2.1.jar
31
27
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-sqlite3
32
28
  licenses:
33
29
  - Apache-2
@@ -50,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
46
  version: '0'
51
47
  requirements: []
52
48
  rubyforge_project:
53
- rubygems_version: 2.6.12
49
+ rubygems_version: 2.4.8
54
50
  signing_key:
55
51
  specification_version: 4
56
52
  summary: SQLite3 for JRuby, includes SQLite native libraries as well as the JDBC driver.
@@ -1,4 +0,0 @@
1
- === 3.7.2
2
-
3
- * http://www.xerial.org/maven/repository/artifact/org/xerial/sqlite-jdbc/3.7.2/
4
-
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
@@ -1,21 +0,0 @@
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
@@ -1 +0,0 @@
1
- require 'jdbc/sqlite3'
Binary file