diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2015-02-25 18:39:14 -0800 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2015-02-25 18:39:14 -0800 |
commit | f031bdc3e5214c699123830d8cc9f9309b792a68 (patch) | |
tree | 03b92c94187d8866f63682a108d20c98dd913be9 /bin/spring |
rails new
Diffstat (limited to 'bin/spring')
-rwxr-xr-x | bin/spring | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/spring b/bin/spring new file mode 100755 index 0000000..e091824 --- /dev/null +++ b/bin/spring @@ -0,0 +1,15 @@ +#!/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" + + if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m) + Gem.paths = { "GEM_PATH" => Bundler.bundle_path.to_s } + gem "spring", match[1] + require "spring/binstub" + end +end |