rdbxml 0.7 → 2.3.10

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.
Files changed (3) hide show
  1. data/Rakefile +3 -1
  2. data/ext/dbxml_wrap.cc +30866 -0
  3. metadata +2 -1
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/rdoctask'
6
6
  require 'rake/gempackagetask'
7
7
  require 'rake/contrib/rubyforgepublisher'
8
8
 
9
- GEM_VERSION = '0.7'
9
+ GEM_VERSION = '2.3.10'
10
10
 
11
11
  dbxml_dist = ENV['DBXML_DIST']
12
12
  if dbxml_dist
@@ -38,6 +38,7 @@ Rake::SWIGExtensionTask.new :dbxml do |t|
38
38
  t.deps[:dbxml] << :dbxml_ruby
39
39
  t.link_libs += ['db', 'db_cxx', 'dbxml', 'xqilla', 'xerces-c']
40
40
  end
41
+ CLEAN.exclude 'ext/dbxml_wrap.cc' # Hack for swig bug
41
42
 
42
43
  task :test => :extensions
43
44
  Rake::TestTask.new do |t|
@@ -62,6 +63,7 @@ end
62
63
  GEM_FILES = docs.rdoc_files + FileList[
63
64
  'Rakefile',
64
65
  'ext/**/*.i',
66
+ 'ext/dbxml_wrap.cc', # Hack for SWIG bug
65
67
  'rake/**/*.rb',
66
68
  'test/**/test_*.rb',
67
69
  ]