do_jdbc 0.10.3-java → 0.10.4-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,16 @@
1
+ ## 0.10.4 2011-04-28
2
+
3
+ New features
4
+ * Add save point to transactions (all)
5
+ * JRuby 1.9 mode support (encodings etc.)
6
+
7
+ Bugfixes
8
+ * Fix bug when using nested transactions in concurrent scenarios (all)
9
+ * Use column aliases instead of names (jruby)
10
+
11
+ Other
12
+ * Switch back to RSpec
13
+
1
14
  ## 0.10.3 2011-01-30
2
15
  * No changes
3
16
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008 - 2010 Alex Coles, Ikonoklastik Productions
1
+ Copyright (c) 2008 - 2011 Alex Coles, Ikonoklastik Productions
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/Rakefile CHANGED
@@ -1,5 +1,7 @@
1
1
  require 'pathname'
2
- require 'rubygems'
2
+ require 'bundler'
3
+ Bundler::GemHelper.install_tasks
4
+
3
5
  require 'rake'
4
6
  require 'rake/clean'
5
7
 
@@ -18,37 +20,8 @@ task :default do
18
20
  # do nothing
19
21
  end
20
22
 
21
- begin
22
- gem 'jeweler', '~> 1.4'
23
- require 'jeweler'
24
-
25
- Jeweler::Tasks.new do |gem|
26
- gem.name = 'do_jdbc'
27
- gem.version = DataObjects::Jdbc::VERSION
28
- gem.summary = 'DataObjects JDBC support library'
29
- gem.description = 'Provides JDBC support for usage in DO drivers for JRuby'
30
- gem.platform = 'java'
31
- gem.files = FileList['lib/**/*.rb', 'tasks/**/*.rake', 'LICENSE',
32
- 'Rakefile', '*.{markdown,rdoc,txt,yml}',
33
- 'lib/*.jar']
34
- gem.extra_rdoc_files = FileList['README*', 'ChangeLog*', 'LICENSE']
35
-
36
- gem.add_dependency 'data_objects', DataObjects::Jdbc::VERSION
37
-
38
- gem.add_development_dependency 'rake-compiler', '~>0.7'
39
23
 
40
- gem.has_rdoc = false
41
- gem.rubyforge_project = 'dorb'
42
- gem.authors = [ 'Alex Coles' ]
43
- gem.email = 'alex@alexbcoles.com'
44
- end
24
+ Rake::Task['build'].clear_actions if Rake::Task.task_defined?('build')
25
+ task :build => [ :java, :gem ]
45
26
 
46
- Rake::Task['build'].clear_actions if Rake::Task.task_defined?('build')
47
- task :build => [ :java, :gem ]
48
-
49
- Jeweler::GemcutterTasks.new
50
-
51
- FileList['tasks/**/*.rake'].each { |task| import task }
52
- rescue LoadError
53
- puts 'Jeweler (or a dependency) not available. Install it with: gem install jeweler'
54
- end
27
+ FileList['tasks/**/*.rake'].each { |task| import task }
@@ -1,5 +1,5 @@
1
1
  module DataObjects
2
2
  module Jdbc
3
- VERSION = '0.10.3'
3
+ VERSION = '0.10.4'
4
4
  end
5
5
  end
Binary file
@@ -2,11 +2,8 @@ begin
2
2
  gem 'rake-compiler', '~>0.7'
3
3
  require 'rake/javaextensiontask'
4
4
 
5
- # Hack to avoid "allocator undefined for Proc" issue when unpacking Gems:
6
- # gemspec provided by Jeweler uses Rake::FileList for files, test_files and
7
- # extra_rdoc_files, and procs cannot be marshalled.
8
5
  def gemspec
9
- @clean_gemspec ||= eval("#{Rake.application.jeweler.gemspec.to_ruby}") # $SAFE = 3\n
6
+ @clean_gemspec ||= Gem::Specification::load(File.expand_path('../../do_jdbc.gemspec', __FILE__))
10
7
  end
11
8
 
12
9
  Rake::JavaExtensionTask.new('do_jdbc_internal', gemspec) do |ext|
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: do_jdbc
3
3
  version: !ruby/object:Gem::Version
4
- hash: 49
4
+ hash: 63
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
- - 3
10
- version: 0.10.3
9
+ - 4
10
+ version: 0.10.4
11
11
  platform: java
12
12
  authors:
13
13
  - Alex Coles
@@ -15,28 +15,26 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-30 00:00:00 +01:00
18
+ date: 2010-07-09 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- name: data_objects
23
- prerelease: false
24
22
  requirement: &id001 !ruby/object:Gem::Requirement
25
23
  none: false
26
24
  requirements:
27
25
  - - "="
28
26
  - !ruby/object:Gem::Version
29
- hash: 49
27
+ hash: 63
30
28
  segments:
31
29
  - 0
32
30
  - 10
33
- - 3
34
- version: 0.10.3
31
+ - 4
32
+ version: 0.10.4
35
33
  type: :runtime
34
+ name: data_objects
35
+ prerelease: false
36
36
  version_requirements: *id001
37
37
  - !ruby/object:Gem::Dependency
38
- name: rake-compiler
39
- prerelease: false
40
38
  requirement: &id002 !ruby/object:Gem::Requirement
41
39
  none: false
42
40
  requirements:
@@ -48,6 +46,8 @@ dependencies:
48
46
  - 7
49
47
  version: "0.7"
50
48
  type: :development
49
+ name: rake-compiler
50
+ prerelease: false
51
51
  version_requirements: *id002
52
52
  description: Provides JDBC support for usage in DO drivers for JRuby
53
53
  email: alex@alexbcoles.com
@@ -56,20 +56,20 @@ executables: []
56
56
  extensions: []
57
57
 
58
58
  extra_rdoc_files:
59
- - README.markdown
60
59
  - ChangeLog.markdown
61
60
  - LICENSE
61
+ - README.markdown
62
62
  files:
63
- - lib/do_jdbc/version.rb
64
- - lib/do_jdbc.rb
65
- - tasks/compile.rake
66
- - tasks/release.rake
67
- - LICENSE
68
- - Rakefile
69
63
  - ChangeLog.markdown
64
+ - LICENSE
70
65
  - README.markdown
66
+ - Rakefile
67
+ - lib/do_jdbc.rb
68
+ - lib/do_jdbc/version.rb
71
69
  - lib/do_jdbc_internal.jar
72
- has_rdoc: false
70
+ - tasks/compile.rake
71
+ - tasks/release.rake
72
+ has_rdoc: true
73
73
  homepage:
74
74
  licenses: []
75
75