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:
authorRobert Speicher <rspeicher@gmail.com>2015-10-09 01:12:43 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-10-09 01:12:43 +0300
commitf4cd4086815c6ec85d4714d037a09faa903f572b (patch)
tree116054319a382d475a1940e3e4d1e84fa5238421 /Gemfile
parent680b6d88a5c0d63deeb2909f1c83e3630db87780 (diff)
Remove guard-rspec and its supporting gems
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Gemfile b/Gemfile
index 044dc30ecd4..7ed5e11a1b9 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,13 +1,5 @@
source "https://rubygems.org"
-def darwin_only(require_as)
- RUBY_PLATFORM.include?('darwin') && require_as
-end
-
-def linux_only(require_as)
- RUBY_PLATFORM.include?('linux') && require_as
-end
-
gem 'rails', '4.1.12'
# Specify a sprockets version due to security issue
@@ -308,11 +300,3 @@ gem 'oauth2', '~> 1.0.0'
# Soft deletion
gem "paranoia", "~> 2.0"
-
-group :development, :test do
- gem 'guard-rspec', '~> 4.2.0'
-
- gem 'rb-fsevent', require: darwin_only('rb-fsevent')
- gem 'growl', require: darwin_only('growl')
- gem 'rb-inotify', require: linux_only('rb-inotify')
-end