jdbc-h2 1.1.107 → 1.3.154
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest.txt +1 -1
- data/README.txt +9 -1
- data/Rakefile +6 -1
- data/lib/h2-1.3.154.jar +0 -0
- data/lib/jdbc/h2.rb +2 -1
- metadata +40 -28
- data/lib/h2-1.1.107.jar +0 -0
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
data/Rakefile
CHANGED
@@ -10,7 +10,12 @@ $LOAD_PATH << "lib"
|
|
10
10
|
require "jdbc/h2"
|
11
11
|
begin
|
12
12
|
require 'hoe'
|
13
|
-
Hoe.
|
13
|
+
Hoe.plugin :gemcutter
|
14
|
+
Hoe.plugin :rubyforge
|
15
|
+
Hoe.spec("jdbc-h2") do |p|
|
16
|
+
version = Jdbc::H2::VERSION
|
17
|
+
version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV']
|
18
|
+
p.version = version
|
14
19
|
p.rubyforge_name = "jruby-extras"
|
15
20
|
p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
|
16
21
|
p.author = "Nick Sieger, Ola Bini and JRuby contributors"
|
data/lib/h2-1.3.154.jar
ADDED
Binary file
|
data/lib/jdbc/h2.rb
CHANGED
metadata
CHANGED
@@ -1,18 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jdbc-h2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease:
|
5
|
+
version: 1.3.154
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
8
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
12
|
|
12
|
-
date:
|
13
|
+
date: 2011-06-20 00:00:00 -05:00
|
13
14
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rubyforge
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.0.4
|
25
|
+
type: :development
|
26
|
+
version_requirements: *id001
|
16
27
|
description: Install this gem and require 'h2' within JRuby to load the driver.
|
17
28
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
18
29
|
executables: []
|
@@ -20,43 +31,44 @@ executables: []
|
|
20
31
|
extensions: []
|
21
32
|
|
22
33
|
extra_rdoc_files:
|
23
|
-
- Manifest.txt
|
24
|
-
- README.txt
|
25
|
-
- LICENSE.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- LICENSE.txt
|
26
37
|
files:
|
27
|
-
- Manifest.txt
|
28
|
-
- Rakefile
|
29
|
-
- README.txt
|
30
|
-
- LICENSE.txt
|
31
|
-
- lib/h2-1.
|
32
|
-
- lib/jdbc
|
33
|
-
- lib/jdbc/h2.rb
|
38
|
+
- Manifest.txt
|
39
|
+
- Rakefile
|
40
|
+
- README.txt
|
41
|
+
- LICENSE.txt
|
42
|
+
- lib/h2-1.3.154.jar
|
43
|
+
- lib/jdbc/h2.rb
|
34
44
|
has_rdoc: true
|
35
45
|
homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
|
46
|
+
licenses: []
|
47
|
+
|
36
48
|
post_install_message:
|
37
49
|
rdoc_options:
|
38
|
-
- --main
|
39
|
-
- README.txt
|
50
|
+
- --main
|
51
|
+
- README.txt
|
40
52
|
require_paths:
|
41
|
-
- lib
|
53
|
+
- lib
|
42
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
43
56
|
requirements:
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
version:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
48
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
49
62
|
requirements:
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
version:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
54
66
|
requirements: []
|
55
67
|
|
56
68
|
rubyforge_project: jruby-extras
|
57
|
-
rubygems_version: 1.
|
69
|
+
rubygems_version: 1.5.1
|
58
70
|
signing_key:
|
59
|
-
specification_version:
|
71
|
+
specification_version: 3
|
60
72
|
summary: H2 JDBC driver for Java and H2/ActiveRecord-JDBC.
|
61
73
|
test_files: []
|
62
74
|
|
data/lib/h2-1.1.107.jar
DELETED
Binary file
|