summaryrefslogtreecommitdiff
path: root/bin/spring
diff options
context:
space:
mode:
Diffstat (limited to 'bin/spring')
-rwxr-xr-xbin/spring14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/spring b/bin/spring
index 7b45d374fcd..e0d140fe0c7 100755
--- a/bin/spring
+++ b/bin/spring
@@ -3,13 +3,13 @@
# This file loads spring without using Bundler, in order to be fast.
# It gets overwritten when you run the `spring binstub` command.
-unless defined?(Spring)
- require "rubygems"
- require "bundler"
+unless (defined?(Spring) || ENV['ENABLE_SPRING'] != '1') && File.basename($0) != 'spring'
+ require 'rubygems'
+ require 'bundler'
- if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)
- Gem.paths = { "GEM_PATH" => [Bundler.bundle_path.to_s, *Gem.path].uniq }
- gem "spring", match[1]
- require "spring/binstub"
+ if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
+ Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) }
+ gem 'spring', match[1]
+ require 'spring/binstub'
end
end