this repo has no description
1#!/usr/bin/env ruby
2if !defined?(Spring) && [nil, "development", "test"].include?(ENV["RAILS_ENV"])
3 gem "bundler"
4 require "bundler"
5
6 # Load Spring without loading other gems in the Gemfile, for speed.
7 Bundler.locked_gems&.specs&.find { |spec| spec.name == "spring" }&.tap do |spring|
8 Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
9 gem "spring", spring.version
10 require "spring/binstub"
11 rescue Gem::LoadError
12 # Ignore when Spring is not installed.
13 end
14end