jdbc-hsqldb 1.8.1.3-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE.txt +2 -0
- data/Manifest.txt +7 -0
- data/README.txt +14 -0
- data/Rakefile +29 -0
- data/lib/hsqldb-1.8.1.3.jar +0 -0
- data/lib/jdbc/hsqldb.rb +10 -0
- metadata +87 -0
data/LICENSE.txt
ADDED
data/Manifest.txt
ADDED
data/README.txt
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
= jdbc-hsqldb
|
2
|
+
|
3
|
+
* http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter/
|
4
|
+
|
5
|
+
== DESCRIPTION:
|
6
|
+
|
7
|
+
This is a HSQLDB JDBC driver gem for JRuby.
|
8
|
+
|
9
|
+
Use
|
10
|
+
|
11
|
+
require 'jdbc/hsqldb'
|
12
|
+
|
13
|
+
to make the driver accessible to JDBC and ActiveRecord code running in JRuby.
|
14
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*"]
|
2
|
+
|
3
|
+
file "Manifest.txt" => :manifest
|
4
|
+
task :manifest do
|
5
|
+
File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
|
6
|
+
end
|
7
|
+
Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files
|
8
|
+
|
9
|
+
$LOAD_PATH << "lib"
|
10
|
+
require "jdbc/hsqldb"
|
11
|
+
begin
|
12
|
+
require 'hoe'
|
13
|
+
Hoe.plugin :gemcutter
|
14
|
+
Hoe.spec("jdbc-hsqldb") do |p|
|
15
|
+
p.version = Jdbc::HSQLDB::VERSION
|
16
|
+
p.spec_extras[:platform] = Gem::Platform.new("java")
|
17
|
+
p.rubyforge_name = "jruby-extras"
|
18
|
+
p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
|
19
|
+
p.author = "Nick Sieger, Ola Bini and JRuby contributors"
|
20
|
+
p.email = "nick@nicksieger.com, ola.bini@gmail.com"
|
21
|
+
p.summary = "HSQLDB JDBC driver for Java and HSQLDB/ActiveRecord-JDBC."
|
22
|
+
p.changes = "Updated to HSQLDB version #{Jdbc::HSQLDB::VERSION}."
|
23
|
+
p.description = "Install this gem and require 'hsqldb' within JRuby to load the driver."
|
24
|
+
end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
|
25
|
+
rescue LoadError
|
26
|
+
puts "You really need Hoe installed to be able to package this gem"
|
27
|
+
rescue => e
|
28
|
+
puts "ignoring error while loading hoe: #{e.to_s}"
|
29
|
+
end
|
Binary file
|
data/lib/jdbc/hsqldb.rb
ADDED
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jdbc-hsqldb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 8
|
8
|
+
- 1
|
9
|
+
- 3
|
10
|
+
version: 1.8.1.3
|
11
|
+
platform: java
|
12
|
+
authors:
|
13
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-09-16 00:00:00 -05:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: rubyforge
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 2
|
31
|
+
- 0
|
32
|
+
- 4
|
33
|
+
version: 2.0.4
|
34
|
+
type: :development
|
35
|
+
version_requirements: *id001
|
36
|
+
description: Install this gem and require 'hsqldb' within JRuby to load the driver.
|
37
|
+
email: nick@nicksieger.com, ola.bini@gmail.com
|
38
|
+
executables: []
|
39
|
+
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files:
|
43
|
+
- Manifest.txt
|
44
|
+
- README.txt
|
45
|
+
- LICENSE.txt
|
46
|
+
files:
|
47
|
+
- Manifest.txt
|
48
|
+
- Rakefile
|
49
|
+
- README.txt
|
50
|
+
- LICENSE.txt
|
51
|
+
- lib/hsqldb-1.8.1.3.jar
|
52
|
+
- lib/jdbc/hsqldb.rb
|
53
|
+
has_rdoc: true
|
54
|
+
homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
|
55
|
+
licenses: []
|
56
|
+
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options:
|
59
|
+
- --main
|
60
|
+
- README.txt
|
61
|
+
require_paths:
|
62
|
+
- lib
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
segments:
|
69
|
+
- 0
|
70
|
+
version: "0"
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
79
|
+
requirements: []
|
80
|
+
|
81
|
+
rubyforge_project: jruby-extras
|
82
|
+
rubygems_version: 1.3.7
|
83
|
+
signing_key:
|
84
|
+
specification_version: 3
|
85
|
+
summary: HSQLDB JDBC driver for Java and HSQLDB/ActiveRecord-JDBC.
|
86
|
+
test_files: []
|
87
|
+
|