jdbc-h2 1.3.170.1 → 1.3.173
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -3
- data/lib/h2-1.3.173.jar +0 -0
- data/lib/jdbc/h2.rb +2 -3
- data/lib/jdbc/h2/version.rb +6 -0
- metadata +10 -11
- data/Rakefile +0 -19
- data/lib/h2-1.3.170.jar +0 -0
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
* Very fast, open source, JDBC API
|
6
6
|
* Embedded and server modes; in-memory databases
|
7
7
|
* Browser based Console application
|
8
|
-
* Small footprint: around 1 MB jar file size
|
8
|
+
* Small footprint: around 1 MB jar file size
|
9
9
|
|
10
10
|
For more information see http://www.h2database.com/
|
11
11
|
|
@@ -23,8 +23,8 @@ For backwards compatibility with older (<= **1.3.154**) versions of the gem use
|
|
23
23
|
|
24
24
|
## Copyright
|
25
25
|
|
26
|
-
Copyright (c)
|
26
|
+
Copyright (c) 2013 [The JRuby Team](https://github.com/jruby).
|
27
27
|
|
28
|
-
H2 is dual licensed and available under a modified version of the MPL 1.1
|
28
|
+
H2 is dual licensed and available under a modified version of the MPL 1.1
|
29
29
|
(Mozilla Public License) or under the (unmodified) EPL 1.0 (Eclipse Public License).
|
30
30
|
see *LICENSE.txt* and http://www.h2database.com/html/license.html for more details.
|
data/lib/h2-1.3.173.jar
ADDED
Binary file
|
data/lib/jdbc/h2.rb
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
warn "Jdbc-H2 is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true)
|
2
|
+
require 'jdbc/h2/version'
|
2
3
|
|
3
4
|
module Jdbc
|
4
5
|
module H2
|
5
|
-
DRIVER_VERSION = '1.3.170'
|
6
|
-
VERSION = DRIVER_VERSION + '.1'
|
7
6
|
|
8
7
|
def self.driver_jar
|
9
8
|
"h2-#{DRIVER_VERSION}.jar"
|
@@ -18,7 +17,7 @@ module Jdbc
|
|
18
17
|
end
|
19
18
|
|
20
19
|
if defined?(JRUBY_VERSION) && # enable backwards-compat behavior :
|
21
|
-
( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
|
20
|
+
( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") ||
|
22
21
|
Java::JavaLang::Boolean.get_boolean("jdbc.h2.autoload") )
|
23
22
|
warn "autoloading JDBC driver on require 'jdbc/h2'" if $VERBOSE
|
24
23
|
load_driver :require
|
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: jdbc-h2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.3.
|
5
|
+
version: 1.3.173
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Nick Sieger, Ola Bini and JRuby contributors
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-08-29 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Install this gem `require 'jdbc/h2'` and invoke `Jdbc::H2.load_driver` within JRuby to load the driver.
|
15
15
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
@@ -17,35 +17,33 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
-
- Rakefile
|
21
20
|
- README.md
|
22
21
|
- LICENSE.txt
|
23
|
-
- lib/h2-1.3.
|
22
|
+
- lib/h2-1.3.173.jar
|
24
23
|
- lib/jdbc/h2.rb
|
24
|
+
- lib/jdbc/h2/version.rb
|
25
25
|
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
26
26
|
licenses: []
|
27
27
|
post_install_message:
|
28
28
|
rdoc_options:
|
29
|
-
-
|
29
|
+
- --main
|
30
30
|
- README.md
|
31
31
|
require_paths:
|
32
32
|
- lib
|
33
33
|
required_ruby_version: !ruby/object:Gem::Requirement
|
34
34
|
requirements:
|
35
|
-
- -
|
35
|
+
- - '>='
|
36
36
|
- !ruby/object:Gem::Version
|
37
37
|
segments:
|
38
38
|
- 0
|
39
39
|
hash: 2
|
40
|
-
version:
|
41
|
-
MA==
|
40
|
+
version: '0'
|
42
41
|
none: false
|
43
42
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
43
|
requirements:
|
45
|
-
- -
|
44
|
+
- - '>='
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
48
|
-
MA==
|
46
|
+
version: '0'
|
49
47
|
none: false
|
50
48
|
requirements: []
|
51
49
|
rubyforge_project: jruby-extras
|
@@ -54,3 +52,4 @@ signing_key:
|
|
54
52
|
specification_version: 3
|
55
53
|
summary: H2 JDBC driver for JRuby and H2/ActiveRecord-JDBC (activerecord-jdbch2-adapter).
|
56
54
|
test_files: []
|
55
|
+
has_rdoc:
|
data/Rakefile
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'bundler/gem_helper'
|
2
|
-
|
3
|
-
name = Dir["*.gemspec"].first.sub('.gemspec', '')
|
4
|
-
gem_helper = Bundler::GemHelper.new(Dir.pwd, name)
|
5
|
-
def gem_helper.version_tag
|
6
|
-
"#{name}-#{version}" # override "v#{version}"
|
7
|
-
end
|
8
|
-
|
9
|
-
version = gem_helper.send(:version)
|
10
|
-
version_tag = gem_helper.version_tag
|
11
|
-
desc "Build #{name}-#{version}.gem into the pkg directory"
|
12
|
-
task('build') { gem_helper.build_gem }
|
13
|
-
|
14
|
-
desc "Build and install #{name}-#{version}.gem into system gems"
|
15
|
-
task('install') { gem_helper.install_gem }
|
16
|
-
|
17
|
-
desc "Create tag #{version_tag} build and push #{name}-#{version}.gem to Rubygems"
|
18
|
-
task('release') { gem_helper.release_gem }
|
19
|
-
|
data/lib/h2-1.3.170.jar
DELETED
Binary file
|