Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michaelklishin@me.com>2011-11-27 17:11:47 +0400
committerMichael Klishin <michaelklishin@me.com>2011-11-27 17:11:47 +0400
commitcce1231b8e6f8bbdb3f76f228b4d8709ef4e110b (patch)
tree20e1669e32fb88e95f40efe6b5f2f0702b1d6c1b /Gemfile
parent8ad1f8a4741522700dc7634e22ae946bbec2c845 (diff)
Do not install ruby-debug on travis-ci.org, it only wastes time
See http://about.travis-ci.org/docs/user/languages/ruby/ (the "Exclude non-essential gems like ruby-debug" section) for reasoning.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 857ea229acb..9ef2f2a16d1 100644
--- a/Gemfile
+++ b/Gemfile
@@ -40,7 +40,9 @@ group :development, :test do
gem 'capybara'
gem 'autotest'
gem 'autotest-rails'
- gem 'ruby-debug19', :require => 'ruby-debug'
+ unless ENV["CI"]
+ gem 'ruby-debug19', :require => 'ruby-debug'
+ end
gem 'awesome_print'
gem 'database_cleaner'
gem 'launchy'