jdbc-hsqldb 2.3.2 → 2.3.4

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: 3526002ac04ab4800270f1b199335327825c45d9
4
- data.tar.gz: 93a5654fb9d070c0cd9e9079c9ba5d073683bb5d
3
+ metadata.gz: d2249b256a4ad23f9bbe29537af876006d0fa4d7
4
+ data.tar.gz: 96dab0fd0cdcfb3ee18495efeda0ce4496313a05
5
5
  SHA512:
6
- metadata.gz: 7ac9cbf31e86f38ab9616883bb6ff2b072521f740808f0fae2f8cba2e943aab244e905cb93183ccbbf299e94cc463b030402b1a8bb671ee0122e83503cd19105
7
- data.tar.gz: 227f179d235c3a97e698bbddc39319914589b82c2262458ddcc6931b344d00a345d73aa0e5de026fa9c6b603f206cae859fb459667357d800ea25e7e1851c4ad
6
+ metadata.gz: e64be9f4887c4eed9a5576dd540bcab152887274df2264e9dffb4c37f5945e1a3c3b17f6e32eb03b7a3679d49fd7f8d2b467721f2e3a1898b49ebdf000d6a0d8
7
+ data.tar.gz: af8e0dcfc98dfe6f22d7fc8c01f731d514037b1cbbcb599e09528fbb8285d591d0978065d26c0a25fa9f2b25dc8c160b77186ac7e23ad085eccffa5853673e30
@@ -0,0 +1,16 @@
1
+ === 2.3.0
2
+
3
+ * see http://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_2_3/hsqldb-2.3.0.zip
4
+
5
+ === 2.2.9
6
+
7
+ Version 2.2 is fully multithreaded and supports high performance 2PL and MVCC
8
+ (multiversion concurrency control) transaction control models.
9
+
10
+ See the list of new features in 2.2 : http://hsqldb.org/web/features200.html
11
+
12
+ * see http://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_2_2/hsqldb-2.2.9.zip
13
+
14
+ === 1.8.1.3
15
+
16
+ * see http://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_1_8_1/hsqldb_1_8_1_3.zip
data/README.md CHANGED
@@ -21,7 +21,7 @@ For backwards compatibility with older (<= **1.8.1.3**) versions of the gem use
21
21
 
22
22
  ## Copyright
23
23
 
24
- Copyright (c) 2013 [The JRuby Team](https://github.com/jruby).
24
+ Copyright (c) 2013-2015 [The JRuby Team](https://github.com/jruby).
25
25
 
26
26
  HSQLDB is completely free to use and distribute under a license based on the
27
27
  standard BSD license and fully compatible with all major open source licenses.
@@ -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/hsqldb/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-hsqldb}
7
+ gem.version = Jdbc::HSQLDB::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-hsqldb'
12
+ gem.licenses = ['BSD']
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{HSQLDB (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).}
20
+ gem.description = %q{Install this gem `require 'jdbc/hsqldb'` and invoke `Jdbc::HSQLDB.load_driver` within JRuby to load the driver.}
21
+ end
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module HSQLDB
3
- DRIVER_VERSION = '2.3.2'
3
+ DRIVER_VERSION = '2.3.4'
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-hsqldb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.4
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-03-05 00:00:00.000000000 Z
11
+ date: 2016-12-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/hsqldb'` and invoke `Jdbc::HSQLDB.load_driver` within JRuby to load the driver.
14
14
  email:
@@ -19,36 +19,38 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
+ - History.txt
22
23
  - LICENSE.txt
23
24
  - README.md
24
- - lib/hsqldb-2.3.2.jar
25
+ - Rakefile
26
+ - jdbc-hsqldb.gemspec
27
+ - lib/hsqldb-2.3.4.jar
25
28
  - lib/jdbc/hsqldb.rb
26
29
  - lib/jdbc/hsqldb/version.rb
27
- homepage: https://github.com/jruby/activerecord-jdbc-adapter
30
+ homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-hsqldb
28
31
  licenses:
29
32
  - BSD
30
33
  metadata: {}
31
34
  post_install_message:
32
35
  rdoc_options:
33
- - --main
36
+ - "--main"
34
37
  - README.md
35
38
  require_paths:
36
39
  - lib
37
40
  required_ruby_version: !ruby/object:Gem::Requirement
38
41
  requirements:
39
- - - '>='
42
+ - - ">="
40
43
  - !ruby/object:Gem::Version
41
44
  version: '0'
42
45
  required_rubygems_version: !ruby/object:Gem::Requirement
43
46
  requirements:
44
- - - '>='
47
+ - - ">="
45
48
  - !ruby/object:Gem::Version
46
49
  version: '0'
47
50
  requirements: []
48
51
  rubyforge_project:
49
- rubygems_version: 2.2.2
52
+ rubygems_version: 2.4.8
50
53
  signing_key:
51
54
  specification_version: 4
52
- summary: HSQLDB JDBC driver for JRuby and HSQLDB/ActiveRecord-JDBC (activerecord-jdbchsqldb-adapter).
55
+ summary: HSQLDB (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).
53
56
  test_files: []
54
- has_rdoc:
Binary file