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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fba391feab28c6c76abb98c1c6f16a96a96edfcb
4
- data.tar.gz: 38de58f441f7acc1b2b29e0893f3c724bd23d115
3
+ metadata.gz: c905640b45c048804cb14a8e2fcfac23d0c280c6
4
+ data.tar.gz: 9edd94e3e08b9497d208eeb2b66bcbcbd3696b22
5
5
  SHA512:
6
- metadata.gz: af1d375a860c2603af8bd66316e9824a68dfce38984c0c13334528c2749486b529def54144a70e2e9af76b5ab46efda614f640b0e9c62aab3d6a9ab26d4b9ab6
7
- data.tar.gz: 8436d8ef4395930b16f1849c4042667036c1d057df135790d2937ae07bbae570761db233d11f7334f70ec7532ee4fe2bd15859d0afd72ab8654084959e43812e
6
+ metadata.gz: 52b5fb6f0559e87283ac732495aa367a7189f6a9b5d4ca0a1e052d20ede067fba7af24692f2fe91634c62dfbfb9ee17c3b5804d35ef27fde754a56fd60e67246
7
+ data.tar.gz: 89f5e02ba73510903ff5603dfdbfefec7bbd507c50d30d342b3aeb747ed540fda2340d5421de0e1d5e170a152f1af8f8c7c16f5e7a781c82806eee0408cc8f4c
@@ -0,0 +1,4 @@
1
+ === 3.7.2
2
+
3
+ * http://www.xerial.org/maven/repository/artifact/org/xerial/sqlite-jdbc/3.7.2/
4
+
@@ -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
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module SQLite3
3
- DRIVER_VERSION = '3.8.7'
3
+ DRIVER_VERSION = '3.8.10.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.8.7
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: 2014-11-18 00:00:00.000000000 Z
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
- - README.md
22
+ - History.txt
23
23
  - LICENSE.txt
24
- - lib/sqlite-jdbc-3.8.7.jar
25
- - lib/sqlite-jdbc-3.7.2.jar
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.1.9
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.
Binary file
Binary file