dbd-jdbc 0.1.1 → 0.1.2
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
- data/lib/dbd/jdbc/type_conversion.rb +1 -1
- metadata +7 -5
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.1.
|
|
31
|
+
Hoe.new("dbd-jdbc", "0.1.2") 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
|
@@ -34,7 +34,7 @@ module DBI::DBD::Jdbc::TypeConversions
|
|
|
34
34
|
return case jdbctype
|
|
35
35
|
when Types::BIGINT then [DBI::SQL_BIGINT, nil]
|
|
36
36
|
when Types::BINARY then [DBI::SQL_BINARY, nil]
|
|
37
|
-
when Types::BIT then [DBI::SQL_BIT,
|
|
37
|
+
when Types::BIT then [DBI::SQL_BIT, DBI::Type::Boolean]
|
|
38
38
|
when Types::CHAR then [DBI::SQL_CHAR, nil]
|
|
39
39
|
when Types::DATE then [DBI::SQL_DATE, DBI::DBD::Jdbc::Type::Timestamp]
|
|
40
40
|
when Types::DECIMAL then [DBI::SQL_DECIMAL, nil]
|
metadata
CHANGED
|
@@ -18,12 +18,14 @@ name: dbd-jdbc
|
|
|
18
18
|
rdoc_options:
|
|
19
19
|
- --main
|
|
20
20
|
- README.txt
|
|
21
|
-
autorequire:
|
|
22
21
|
rubyforge_project: jruby-extras
|
|
22
|
+
autorequire:
|
|
23
|
+
licenses: []
|
|
24
|
+
|
|
23
25
|
executables: []
|
|
24
26
|
|
|
25
27
|
description: A JDBC DBD driver for Ruby DBI
|
|
26
|
-
specification_version:
|
|
28
|
+
specification_version: 3
|
|
27
29
|
default_executable:
|
|
28
30
|
files:
|
|
29
31
|
- lib/dbd/Jdbc.rb
|
|
@@ -41,17 +43,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
41
43
|
version:
|
|
42
44
|
extensions: []
|
|
43
45
|
|
|
44
|
-
rubygems_version: 1.3.
|
|
46
|
+
rubygems_version: 1.3.3
|
|
45
47
|
requirements: []
|
|
46
48
|
|
|
47
49
|
authors:
|
|
48
50
|
- Chad Johnson
|
|
49
|
-
date: 2009-09-
|
|
51
|
+
date: 2009-09-17 05:00:00 +00:00
|
|
50
52
|
platform: ruby
|
|
51
53
|
test_files: []
|
|
52
54
|
|
|
53
55
|
version: !ruby/object:Gem::Version
|
|
54
|
-
version: 0.1.
|
|
56
|
+
version: 0.1.2
|
|
55
57
|
require_paths:
|
|
56
58
|
- lib
|
|
57
59
|
dependencies: []
|