jdbc-hsqldb 1.8.1.3-java

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE.txt ADDED
@@ -0,0 +1,2 @@
1
+ This gem bundles the HSQLDB driver for Java. HSQL is available under the terms of the Hypersonic SQL license, see http://hsqldb.org/web/hsqlLicense.html for details.
2
+
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ Manifest.txt
2
+ Rakefile
3
+ README.txt
4
+ LICENSE.txt
5
+ lib/hsqldb-1.8.1.3.jar
6
+ lib/jdbc
7
+ lib/jdbc/hsqldb.rb
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
@@ -0,0 +1,10 @@
1
+ module Jdbc
2
+ module HSQLDB
3
+ VERSION = "1.8.1.3"
4
+ end
5
+ end
6
+ if RUBY_PLATFORM =~ /java/
7
+ require "hsqldb-#{Jdbc::HSQLDB::VERSION}.jar"
8
+ else
9
+ warn "jdbc-hsqldb is only for use with JRuby"
10
+ end
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
+