jdbc-h2 1.4.178 → 1.4.181

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: a7828ff75316b23d525b8ed9bd2f2f4d0c87220e
4
- data.tar.gz: 40c1e291c37fe44c3b64cf3f68db473f51a1d503
3
+ metadata.gz: 2afa04a2e25443a9ea4338e32ae03913f311b75d
4
+ data.tar.gz: 6d26ec6e96d8cc400ff23734750a57a4875efcad
5
5
  SHA512:
6
- metadata.gz: 287c8e1d95d0c1ef48680c99cf8b14e1eafde26a78fd1ff38335025e7a8653ca450d196551f5dd42c3a38db6ea773b07956a97b31324c744e1906d43eaf189a6
7
- data.tar.gz: 3702a64660e08c84c7ea8732d77058ae8b562a94b366d11929a28b4f14da636cbe690c1502496c3710e57e22511472464e34f17eecadbe26078b39b67a65eddd
6
+ metadata.gz: 52caf42046d1f1286c75e9d1ff82b0935827d92f46484a29170a7ff05b090bd35889f8e7fba504562e224bf54b6584531ca7f7c70bc767bd15272781368f1820
7
+ data.tar.gz: dd218e7bc5f1efb98e61ed3f5d30620f67a5fd1e134ac1dd311eddd72e99d3d7ab42229346abbeef4cc4bbe59c0deab6d382d728656a3048110aebeaf9687cfb
@@ -0,0 +1,19 @@
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
@@ -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/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
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module H2
3
- DRIVER_VERSION = '1.4.178'
3
+ DRIVER_VERSION = '1.4.181'
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-h2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.178
4
+ version: 1.4.181
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-05-30 00:00:00.000000000 Z
11
+ date: 2015-02-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.
14
14
  email:
@@ -19,12 +19,15 @@ 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/h2-1.4.178.jar
25
+ - Rakefile
26
+ - jdbc-h2.gemspec
27
+ - lib/h2-1.4.181.jar
25
28
  - lib/jdbc/h2.rb
26
29
  - lib/jdbc/h2/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
  metadata: {}
30
33
  post_install_message:
@@ -45,9 +48,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
48
  version: '0'
46
49
  requirements: []
47
50
  rubyforge_project:
48
- rubygems_version: 2.2.2
51
+ rubygems_version: 2.4.5
49
52
  signing_key:
50
53
  specification_version: 4
51
- summary: H2 JDBC driver for JRuby and H2/ActiveRecord-JDBC (activerecord-jdbch2-adapter).
54
+ summary: H2 (JDBC driver) for JRuby (usable with ActiveRecord-JDBC).
52
55
  test_files: []
53
56
  has_rdoc:
Binary file