1234567891011121314151617181920 |
- #!/usr/bin/env ruby
- # 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"
- case lockfile = Bundler.default_lockfile.read
- when /^GEM$.*?^ spring \((.*?)\)$.*?^$/m
- version = $1
- ENV["GEM_PATH"] = ([Bundler.bundle_path.to_s] + Gem.path).join(File::PATH_SEPARATOR)
- ENV["GEM_HOME"] = "" unless /^GIT$/ === lockfile
- Gem.paths = ENV
- gem "spring", version
- require "spring/binstub"
- end
- end
|