summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-12-20 14:38:57 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2013-12-20 14:38:57 -0800
commit11911fc8d992260297e706a0168e4089e7d65eb8 (patch)
tree84eb7446375877311015c1a5027ae89e22367ea2 /Rakefile
parentf5a670d49b26764dbe805f1a8ad03c9d106eafea (diff)
downloadffi-yajl-11911fc8d992260297e706a0168e4089e7d65eb8.tar.gz
almost working parser (unicode broken)
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 8b6c791..811b1e8 100644
--- a/Rakefile
+++ b/Rakefile
@@ -42,6 +42,8 @@ task :compile do
# FIXME: please, please, fix me...
sh %Q{ cd ext/ffi_yajl/ext/encoder && ruby extconf.rb && make && cp encoder.* ../../../../lib/ffi_yajl/ext }
sh %Q{ rm -f lib/ffi_yajl/ext/encoder.{c,o} }
+ sh %Q{ cd ext/ffi_yajl/ext/parser && ruby extconf.rb && make && cp parser.* ../../../../lib/ffi_yajl/ext }
+ sh %Q{ rm -f lib/ffi_yajl/ext/parser.{c,o} }
end
task :default => :spec