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 ...@@ -42,19 +42,14 @@ namespace :gem do
end end
namespace :ext do namespace :ext do
EXT_DIR = "./external/Xcodeproj/ext/xcodeproj" XCODEPROJ_DIR = "./external/Xcodeproj"
task :clean do task :clean do
Dir.chdir(EXT_DIR) do sh "cd #{XCODEPROJ_DIR} && rake ext:clean"
sh "rm -f Makefile *.o *.bundle"
end
end end
task :build do task :build do
Dir.chdir(EXT_DIR) do sh "cd #{XCODEPROJ_DIR} && rake ext:build"
ruby "extconf.rb"
sh "make"
end
end end
task :cleanbuild => [:clean, :build] 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