summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2015-07-12 22:46:51 +0200
committerYorick Peterse <yorickpeterse@gmail.com>2015-07-18 14:08:59 +0200
commit58b94be9a7e97112755041e30559ebc2ca0a8b1d (patch)
tree165d96a296ac62836e4440c62269fa6fbd83f398
parentff3b68ac93f3556a45679a928d86fb6fc81cb98b (diff)
downloadgitlab-ce-58b94be9a7e97112755041e30559ebc2ca0a8b1d.tar.gz
Only load byebug on MRI
This Gem relies on MRI specific debugging APIs. This at least allows installation on Rubinius/JRuby.
-rw-r--r--Gemfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 9b7fd18ab19..ba32feba3e7 100644
--- a/Gemfile
+++ b/Gemfile
@@ -46,7 +46,7 @@ gem "gitlab_git", '~> 7.2.5'
gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
# LDAP Auth
-# GitLab fork with several improvements to original library. For full list of changes
+# GitLab fork with several improvements to original library. For full list of changes
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
@@ -54,9 +54,9 @@ gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
gem 'gollum-lib', '~> 4.0.2'
# Language detection
-# GitLab fork of linguist does not require pygments/python dependency.
-# New version of original gem also dropped pygments support but it has strict
-# dependency to unstable rugged version. We have internal issue for replacing
+# GitLab fork of linguist does not require pygments/python dependency.
+# New version of original gem also dropped pygments support but it has strict
+# dependency to unstable rugged version. We have internal issue for replacing
# fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052.
gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
@@ -227,7 +227,7 @@ end
group :development, :test do
gem 'awesome_print'
- gem 'byebug'
+ gem 'byebug', platform: :mri
gem 'fuubar', '~> 2.0.0'
gem 'pry-rails'