rdbxml 0.7 → 2.3.10
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -1
- data/ext/dbxml_wrap.cc +30866 -0
- 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 = '
|
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
|
]
|