diff options
author | Rémy Coutable <remy@rymai.me> | 2018-05-15 09:43:55 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-05-15 09:43:55 +0000 |
commit | a78b1b27b86d34c00e1b0631e967d637f8a6714b (patch) | |
tree | 1fd88726e0c5f1752c81219342b041708caee783 /bin | |
parent | eb55592a1b4835cf21bd0ff4e6638e92da799335 (diff) | |
parent | ee70fd55acf12065c96bd57ccfe218ef28e64f88 (diff) | |
download | gitlab-ce-a78b1b27b86d34c00e1b0631e967d637f8a6714b.tar.gz |
Merge branch 'blackst0ne-remove-spinach' into 'master'
Remove Spinach
Closes #23036
See merge request gitlab-org/gitlab-ce!18869
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/spinach | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/spinach b/bin/spinach deleted file mode 100755 index eda81c9ed8a..00000000000 --- a/bin/spinach +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env ruby - -# Remove this block when removing rails5? code. -gemfile = %w[1 true].include?(ENV["RAILS5"]) ? "Gemfile.rails5" : "Gemfile" -ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../#{gemfile}", __dir__) - -begin - load File.expand_path('../spring', __FILE__) -rescue LoadError => e - raise unless e.message.include?('spring') -end -require 'bundler/setup' -load Gem.bin_path('spinach', 'spinach') |