jdbc-luciddb 0.9.3

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.
@@ -0,0 +1,5 @@
1
+ This gem bundles the LucidDB JDBC driver for Java. This gem is
2
+ available under same license terms as LucidDB JDBC driver:
3
+
4
+ LucidDB client software is released under the GNU Lesser General Public License v2.1
5
+ (see details at http://luciddb.org/COPYING-client.txt)
@@ -0,0 +1,13 @@
1
+ # jdbc-luciddb
2
+
3
+ * http://github.com/rsim/jdbc-luciddb
4
+
5
+ ## DESCRIPTION:
6
+
7
+ This is a [LucidDB](http://luciddb.org) JDBC driver gem for JRuby.
8
+
9
+ Use
10
+
11
+ require 'jdbc/luciddb'
12
+
13
+ to make the driver accessible to JDBC and JRuby.
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,10 @@
1
+ module Jdbc
2
+ module LucidDB
3
+ VERSION = "0.9.3"
4
+ end
5
+ end
6
+ if RUBY_PLATFORM =~ /java/
7
+ require "LucidDbClient-#{Jdbc::LucidDB::VERSION}.jar"
8
+ else
9
+ warn "jdbc-luciddb is only for use with JRuby"
10
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jdbc-luciddb
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.9.3
6
+ platform: ruby
7
+ authors:
8
+ - Raimonds Simanovskis
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-06-30 00:00:00 +03:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: Install this gem and require 'jdbc/luciddb' within JRuby to load the driver.
18
+ email: raimonds.simanovskis@gmail.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files: []
24
+
25
+ files:
26
+ - Rakefile
27
+ - README.md
28
+ - LICENSE.txt
29
+ - lib/LucidDbClient-0.9.3.jar
30
+ - lib/jdbc/luciddb.rb
31
+ has_rdoc: true
32
+ homepage: http://github.com/rsim/jdbc-luciddb
33
+ licenses: []
34
+
35
+ post_install_message:
36
+ rdoc_options: []
37
+
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "0"
52
+ requirements: []
53
+
54
+ rubyforge_project:
55
+ rubygems_version: 1.5.1
56
+ signing_key:
57
+ specification_version: 3
58
+ summary: LucidDB JDBC driver for Java.
59
+ test_files: []
60
+