jdbc-hsqldb 2.3.4 → 2.4.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: d2249b256a4ad23f9bbe29537af876006d0fa4d7
4
- data.tar.gz: 96dab0fd0cdcfb3ee18495efeda0ce4496313a05
3
+ metadata.gz: a0f3316c39d472baa50a63be3087fffc2d1ff11f
4
+ data.tar.gz: a1557d912a6ec239cab895252bfbcce15ef2076f
5
5
  SHA512:
6
- metadata.gz: e64be9f4887c4eed9a5576dd540bcab152887274df2264e9dffb4c37f5945e1a3c3b17f6e32eb03b7a3679d49fd7f8d2b467721f2e3a1898b49ebdf000d6a0d8
7
- data.tar.gz: af8e0dcfc98dfe6f22d7fc8c01f731d514037b1cbbcb599e09528fbb8285d591d0978065d26c0a25fa9f2b25dc8c160b77186ac7e23ad085eccffa5853673e30
6
+ metadata.gz: 0913b93d203d47c2b366cea171885446604d29165d553de6d11224affa3d637be8526f3aedc00999caaca8e2b1f44eea46acd1a7a4007d56b9560372ffe736b7
7
+ data.tar.gz: d06e560bf6a4614d9a88803d8fb2b3f64ed3cb2d80e07a4ba4830f06959857ebb1b6c9798104f382f6890fcc5301496f21ea0d3d4bbb2ad0a47c60a3f31b233e
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-2015 [The JRuby Team](https://github.com/jruby).
24
+ Copyright (c) 2013 [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.
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module HSQLDB
3
- DRIVER_VERSION = '2.3.4'
3
+ DRIVER_VERSION = '2.4.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-hsqldb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.4.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: 2016-12-23 00:00:00.000000000 Z
11
+ date: 2018-11-29 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,12 +19,9 @@ 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-hsqldb.gemspec
27
- - lib/hsqldb-2.3.4.jar
24
+ - lib/hsqldb-2.4.1.jar
28
25
  - lib/jdbc/hsqldb.rb
29
26
  - lib/jdbc/hsqldb/version.rb
30
27
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-hsqldb
@@ -49,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
46
  version: '0'
50
47
  requirements: []
51
48
  rubyforge_project:
52
- rubygems_version: 2.4.8
49
+ rubygems_version: 2.6.12
53
50
  signing_key:
54
51
  specification_version: 4
55
52
  summary: HSQLDB (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).
@@ -1,16 +0,0 @@
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/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/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