From 7f6f8f651c8a020fb08109b331d51c5ca900740d Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Thu, 10 Nov 2011 20:40:46 +0400 Subject: [PATCH] Do not install ruby-debug on travis-ci.org, it only wastes time We are trying to make Ruby project maintainers aware of how long it takes to compile linecache every time. See https://twitter.com/#!/travisci/status/134609246036836352. --- Gemfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 00255c0b2..09001842a 100644 --- a/Gemfile +++ b/Gemfile @@ -141,9 +141,11 @@ group :development do gem 'capistrano-ext', '1.2.1', :require => false gem 'linecache', '0.43', :platforms => :mri_18 gem 'parallel_tests' - gem 'ruby-debug-base19', '0.11.23' if RUBY_VERSION.include? '1.9.1' - gem 'ruby-debug19', :platforms => :ruby_19 - gem 'ruby-debug', :platforms => :mri_18 + unless ENV["CI"] + gem 'ruby-debug-base19', '0.11.23' if RUBY_VERSION.include? '1.9.1' + gem 'ruby-debug19', :platforms => :ruby_19 + gem 'ruby-debug', :platforms => :mri_18 + end gem 'sod', :git => 'git://github.com/MikeSofaer/sod.git', :require => false gem 'yard' end