dbd-jdbc 0.0.2 → 0.0.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.
- data/Rakefile +1 -1
- data/lib/dbd/Jdbc.rb +1 -1
- metadata +2 -3
- data/lib/dbd/jdbc.rb +0 -29
data/Rakefile
CHANGED
|
@@ -28,7 +28,7 @@ Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date lis
|
|
|
28
28
|
|
|
29
29
|
begin
|
|
30
30
|
require 'hoe'
|
|
31
|
-
Hoe.new("dbd-jdbc", "0.0.
|
|
31
|
+
Hoe.new("dbd-jdbc", "0.0.3") do |p|
|
|
32
32
|
p.rubyforge_name = "jruby-extras"
|
|
33
33
|
p.url = "http://kenai.com/projects/dbd-jdbc"
|
|
34
34
|
p.author = "Chad Johnson"
|
data/lib/dbd/Jdbc.rb
CHANGED
metadata
CHANGED
|
@@ -28,7 +28,6 @@ default_executable:
|
|
|
28
28
|
files:
|
|
29
29
|
- lib/dbd/JdbcTypeConversions.rb
|
|
30
30
|
- lib/dbd/Jdbc.rb
|
|
31
|
-
- lib/dbd/jdbc.rb
|
|
32
31
|
- Rakefile
|
|
33
32
|
- README.txt
|
|
34
33
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
@@ -44,12 +43,12 @@ requirements: []
|
|
|
44
43
|
|
|
45
44
|
authors:
|
|
46
45
|
- Chad Johnson
|
|
47
|
-
date: 2009-03-
|
|
46
|
+
date: 2009-03-10 00:00:00 Z
|
|
48
47
|
platform: ruby
|
|
49
48
|
test_files: []
|
|
50
49
|
|
|
51
50
|
version: !ruby/object:Gem::Version
|
|
52
|
-
version: 0.0.
|
|
51
|
+
version: 0.0.3
|
|
53
52
|
require_paths:
|
|
54
53
|
- lib
|
|
55
54
|
dependencies: []
|
data/lib/dbd/jdbc.rb
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# (C) 2009 Chad Johnson <chad.j.johnson@gmail.com>.
|
|
2
|
-
# (C) 2008 Ola Bini <ola.bini@gmail.com>.
|
|
3
|
-
# (C) 2006 Kristopher Schmidt <krisschmidt@optonline.net>.
|
|
4
|
-
#
|
|
5
|
-
# All rights reserved.
|
|
6
|
-
#
|
|
7
|
-
# Redistribution and use in source and binary forms, with or without
|
|
8
|
-
# modification, are permitted provided that the following conditions
|
|
9
|
-
# are met:
|
|
10
|
-
# 1. Redistributions of source code must retain the above copyright
|
|
11
|
-
# notice, this list of conditions and the following disclaimer.
|
|
12
|
-
# 2. Redistributions in binary form must reproduce the above copyright
|
|
13
|
-
# notice, this list of conditions and the following disclaimer in the
|
|
14
|
-
# documentation and/or other materials provided with the distribution.
|
|
15
|
-
# 3. The name of the author may not be used to endorse or promote products
|
|
16
|
-
# derived from this software without specific prior written permission.
|
|
17
|
-
#
|
|
18
|
-
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
19
|
-
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
20
|
-
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
21
|
-
# THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
22
|
-
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
23
|
-
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
24
|
-
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
25
|
-
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
26
|
-
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
27
|
-
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
-
|
|
29
|
-
require File.dirname(__FILE__) + '/Jdbc'
|