summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-09-11 17:01:27 +0000
committerJamis Buck <jamis@37signals.com>2005-09-11 17:01:27 +0000
commit1a1e6741788be3bd7c294e698ca77edc7cd44a9f (patch)
tree9a4d704e713ea96823a2735ac240a8948742f335 /Rakefile
parent03076057704ced9a2e1bc7bca829299a459bc07d (diff)
downloadthird_party-sqlite3-ruby-1a1e6741788be3bd7c294e698ca77edc7cd44a9f.tar.gz
third_party-sqlite3-ruby-1a1e6741788be3bd7c294e698ca77edc7cd44a9f.tar.xz
third_party-sqlite3-ruby-1a1e6741788be3bd7c294e698ca77edc7cd44a9f.zip
Fix a few broken tests (and comment out a few that appear to be broken due to sqlite3 bugs). Add a pre-built sqlite3_api_wrap.c and make the extconf.rb not try to build it every time. Make extconf.rb die if asked to build the wrap.c file and swig is not installed.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index cb57ed2..bce4524 100644
--- a/Rakefile
+++ b/Rakefile
@@ -53,7 +53,7 @@ task :clean do
rm_f "doc/faq/faq.html"
native_files = [ "Makefile", "mkmf.log", "sqlite3_api.so",
- "sqlite3_api_wrap.c", "sqlite3_api_wrap.o" ]
+ "sqlite3_api.bundle", "sqlite3_api_wrap.o" ]
native_files.each { |f| rm_f "ext/sqlite3_api/#{f}" }
end