Commit 7e2875a6 authored by Eloy Duran's avatar Eloy Duran

We need to fix the Travis/RVM 1.8.7 install by symlinking the Ruby include dir.

parent 46c5e42a
......@@ -42,19 +42,14 @@ namespace :gem do
end
namespace :ext do
EXT_DIR = "./external/Xcodeproj/ext/xcodeproj"
XCODEPROJ_DIR = "./external/Xcodeproj"
task :clean do
Dir.chdir(EXT_DIR) do
sh "rm -f Makefile *.o *.bundle"
end
sh "cd #{XCODEPROJ_DIR} && rake ext:clean"
end
task :build do
Dir.chdir(EXT_DIR) do
ruby "extconf.rb"
sh "make"
end
sh "cd #{XCODEPROJ_DIR} && rake ext:build"
end
task :cleanbuild => [:clean, :build]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment