From 2cd9d32849f5d578d4bfaedcd3eca0f1c645af19 Mon Sep 17 00:00:00 2001 From: Matthew Horan Date: Wed, 2 Jul 2014 20:54:11 -0400 Subject: [PATCH] Install bundler Gem tasks in bundler namespace * The release task in Bundler >= 1.3.1 depends on the build task, which conflicts with our build task, resulting in a webkit_server build instead of a gem build. [ci skip] --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3ea050b..5158eee 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,9 @@ require 'rspec/core/rake_task' require_relative './lib/capybara_webkit_builder' require 'appraisal' -Bundler::GemHelper.install_tasks +namespace :bundler do + Bundler::GemHelper.install_tasks +end desc "Generate a Makefile using qmake" file 'Makefile' do