jdbc-h2 1.4.181 → 2.0.204

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
- SHA1:
3
- metadata.gz: 2afa04a2e25443a9ea4338e32ae03913f311b75d
4
- data.tar.gz: 6d26ec6e96d8cc400ff23734750a57a4875efcad
2
+ SHA256:
3
+ metadata.gz: 6761f796534657160a562d901dbe82c8f17a58c8887465daebce06bc88f7825e
4
+ data.tar.gz: 512ac77c3ac86e51607b175c1bb90fe30b76c1c8c5aa0d984b4e02bb7ef81a64
5
5
  SHA512:
6
- metadata.gz: 52caf42046d1f1286c75e9d1ff82b0935827d92f46484a29170a7ff05b090bd35889f8e7fba504562e224bf54b6584531ca7f7c70bc767bd15272781368f1820
7
- data.tar.gz: dd218e7bc5f1efb98e61ed3f5d30620f67a5fd1e134ac1dd311eddd72e99d3d7ab42229346abbeef4cc4bbe59c0deab6d382d728656a3048110aebeaf9687cfb
6
+ metadata.gz: e10226478d94e4d206a01628be0a6454b3c8448ffade056a69f2cfda3ec103483606f68d66de1049b9c169b193fbfa191965b6f136fadfdc82b6022d95cb642c
7
+ data.tar.gz: eb5e70a3c363d9c4ea2af2a70d9d02907b7898ceeec717f679744b1b0f9003fc493d201921155a6500dc39312a66c84895b70bf87fd6dbc5f7c25e7264e22f25
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module H2
3
- DRIVER_VERSION = '1.4.181'
3
+ DRIVER_VERSION = '2.0.204'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-h2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.181
4
+ version: 2.0.204
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: 2015-02-14 00:00:00.000000000 Z
11
+ date: 2022-01-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.
13
+ description: Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver`
14
+ within JRuby to load the driver.
14
15
  email:
15
16
  - nick@nicksieger.com
16
17
  - ola.bini@gmail.com
@@ -19,38 +20,34 @@ executables: []
19
20
  extensions: []
20
21
  extra_rdoc_files: []
21
22
  files:
22
- - History.txt
23
23
  - LICENSE.txt
24
24
  - README.md
25
- - Rakefile
26
- - jdbc-h2.gemspec
27
- - lib/h2-1.4.181.jar
25
+ - lib/h2-2.0.204.jar
28
26
  - lib/jdbc/h2.rb
29
27
  - lib/jdbc/h2/version.rb
30
- homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-hsqldb
31
- licenses: []
28
+ homepage: https://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-h2
29
+ licenses:
30
+ - H2
32
31
  metadata: {}
33
32
  post_install_message:
34
33
  rdoc_options:
35
- - --main
34
+ - "--main"
36
35
  - README.md
37
36
  require_paths:
38
37
  - lib
39
38
  required_ruby_version: !ruby/object:Gem::Requirement
40
39
  requirements:
41
- - - '>='
40
+ - - ">="
42
41
  - !ruby/object:Gem::Version
43
42
  version: '0'
44
43
  required_rubygems_version: !ruby/object:Gem::Requirement
45
44
  requirements:
46
- - - '>='
45
+ - - ">="
47
46
  - !ruby/object:Gem::Version
48
47
  version: '0'
49
48
  requirements: []
50
- rubyforge_project:
51
- rubygems_version: 2.4.5
49
+ rubygems_version: 3.2.29
52
50
  signing_key:
53
51
  specification_version: 4
54
52
  summary: H2 (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).
55
53
  test_files: []
56
- has_rdoc:
data/History.txt DELETED
@@ -1,19 +0,0 @@
1
- === 1.3.175
2
-
3
- * http://www.h2database.com/html/changelog.html for 1.3.175 (2013-01-18)
4
-
5
- === 1.3.174
6
-
7
- * http://www.h2database.com/html/changelog.html for 1.3.174 (2013-10-19)
8
-
9
- === 1.3.173
10
-
11
- * http://www.h2database.com/html/changelog.html for 1.3.173 (2013-07-28)
12
-
13
- === 1.3.170
14
-
15
- * http://www.h2database.com/html/changelog.html for 1.3.170 (2012-11-30)
16
-
17
- === 1.3.154
18
-
19
- * http://www.h2database.com/html/changelog.html
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
data/jdbc-h2.gemspec DELETED
@@ -1,21 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
- require 'jdbc/h2/version'
4
-
5
- Gem::Specification.new do |gem|
6
- gem.name = %q{jdbc-h2}
7
- gem.version = Jdbc::H2::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 = ['H2']
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{H2 (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).}
20
- gem.description = %q{Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.}
21
- end
data/lib/h2-1.4.181.jar DELETED
Binary file