diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-10-08 18:12:43 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-10-08 18:12:43 -0400 |
commit | f4cd4086815c6ec85d4714d037a09faa903f572b (patch) | |
tree | 116054319a382d475a1940e3e4d1e84fa5238421 /Gemfile | |
parent | 680b6d88a5c0d63deeb2909f1c83e3630db87780 (diff) | |
download | gitlab-ce-f4cd4086815c6ec85d4714d037a09faa903f572b.tar.gz |
Remove guard-rspec and its supporting gemsrs-remove-guard
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -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 |