jdbc-orientdb 1.0

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,2 @@
1
+ This gem bundles the OrieentDB driver for Java.
2
+
@@ -0,0 +1,14 @@
1
+ = jdbc-orientdb
2
+
3
+ * https://github.com/aemadrid/jdbc-orientdb/
4
+
5
+ == DESCRIPTION:
6
+
7
+ This is a OrientDB JDBC driver gem for JRuby.
8
+
9
+ Use
10
+
11
+ require 'jdbc/orientdb'
12
+
13
+ to make the driver accessible to JDBC and ActiveRecord code running in JRuby.
14
+
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,10 @@
1
+ module Jdbc
2
+ module OrientDB
3
+ VERSION = "1.0"
4
+ end
5
+ end
6
+ if RUBY_PLATFORM =~ /java/
7
+ require "orientdb-jdbc-#{Jdbc::OrientDB::VERSION}-SNAPSHOT.jar"
8
+ elsif $VERBOSE
9
+ warn "jdbc-orientdb is only for use with JRuby"
10
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jdbc-orientdb
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ version: "1.0"
9
+ platform: ruby
10
+ authors:
11
+ - Adrian Madrid
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+
16
+ date: 2012-12-16 00:00:00 -07:00
17
+ default_executable:
18
+ dependencies: []
19
+
20
+ description: Install this gem and require 'orientdb' within JRuby to load the driver.
21
+ email: aemadrid@gmail.com
22
+ executables: []
23
+
24
+ extensions: []
25
+
26
+ extra_rdoc_files: []
27
+
28
+ files:
29
+ - Rakefile
30
+ - README.txt
31
+ - LICENSE.txt
32
+ - lib/jdbc/orientdb.rb
33
+ - lib/orientdb-jdbc-1.0-SNAPSHOT.jar
34
+ has_rdoc: true
35
+ homepage:
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ rdoc_options:
40
+ - --main
41
+ - README.txt
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ segments:
49
+ - 0
50
+ version: "0"
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ requirements: []
59
+
60
+ rubyforge_project:
61
+ rubygems_version: 1.3.6
62
+ signing_key:
63
+ specification_version: 3
64
+ summary: OrientDB JDBC driver for Java and OrientDB/ActiveRecord-JDBC.
65
+ test_files: []
66
+