From de07c1b134352a9dc2cc38fd0afac0589ccb961c Mon Sep 17 00:00:00 2001 From: Petko Bordjukov Date: Thu, 20 Nov 2014 13:33:41 +0200 Subject: [PATCH] Remove vulcan as it's breaking the Rubinius build --- Rakefile | 7 ------- libv8.gemspec | 1 - 2 files changed, 8 deletions(-) diff --git a/Rakefile b/Rakefile index 91c7a0e..e5d4690 100644 --- a/Rakefile +++ b/Rakefile @@ -77,12 +77,5 @@ task :clean do sh "cd #{GYP_Source} && git checkout -f && git clean -dxf" end -desc "build a binary on heroku (you must have vulcan configured for this)" -task :vulcan => directory("tmp/vulcan") do - Dir.chdir('tmp/vulcan') do - sh "vulcan build -v -c 'LANG=en_US.UTF-8 export BIN=/`pwd`/bin && export GEM=$BIN/gem && curl https://s3.amazonaws.com/heroku-buildpack-ruby/ruby-1.9.3.tgz > ruby-1.9.3.tgz && tar xf ruby-1.9.3.tgz && cd /tmp && $GEM fetch libv8 --platform=ruby --version=#{Libv8::VERSION} && $GEM unpack libv8*.gem && $GEM install bundler -n $BIN --no-ri --no-rdoc && cd libv8-#{Libv8::VERSION} && $BIN/bundle && $BIN/bundle exec rake binary' -p /tmp/libv8-#{Libv8::VERSION}" - end -end - task :default => [:checkout, :compile, :spec] task :build => [:clean, :checkout] diff --git a/libv8.gemspec b/libv8.gemspec index 4d00044..68a5b8c 100644 --- a/libv8.gemspec +++ b/libv8.gemspec @@ -33,5 +33,4 @@ Gem::Specification.new do |s| s.add_development_dependency "rspec" s.add_development_dependency "rspec-spies" s.add_development_dependency "rubysl", "~> 2.0" if RUBY_ENGINE == "rbx" - s.add_development_dependency "vulcan" end