20 lines
538 B
Ruby
Executable File
20 lines
538 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# This file loads Spring without loading other gems in the Gemfile in order to be fast.
|
|
# It gets overwritten when you run the `spring binstub` command.
|
|
|
|
if !defined?(Spring) &&
|
|
[nil, "development", "test", "staging"].include?(ENV["RAILS_ENV"])
|
|
require "bundler"
|
|
|
|
Bundler
|
|
.locked_gems
|
|
.specs
|
|
.find { |spec| spec.name == "spring" }
|
|
&.tap do |spring|
|
|
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
|
|
gem "spring", spring.version
|
|
require "spring/binstub"
|
|
end
|
|
end
|