dbd-jdbc 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
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.1") do |p|
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"
@@ -49,7 +49,7 @@ module DBI
49
49
  include_class 'java.util.HashMap'
50
50
  include_class 'java.util.Collections'
51
51
 
52
- VERSION = "0.1.1"
52
+ VERSION = "0.1.2"
53
53
  DESCRIPTION = "JDBC DBD driver for JRuby"
54
54
 
55
55
  #
@@ -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, nil]
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: 2
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.1
46
+ rubygems_version: 1.3.3
45
47
  requirements: []
46
48
 
47
49
  authors:
48
50
  - Chad Johnson
49
- date: 2009-09-10 05:00:00 +00:00
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.1
56
+ version: 0.1.2
55
57
  require_paths:
56
58
  - lib
57
59
  dependencies: []