EvoBal/bin/spring

15 lines
492 B
Plaintext
Raw Normal View History

2020-10-17 12:16:28 +02:00
#!/usr/bin/env ruby
2021-02-07 16:46:01 +01:00
if !defined?(Spring) && [nil, "development", "test"].include?(ENV["RAILS_ENV"])
gem "bundler"
require "bundler"
2020-10-17 12:16:28 +02:00
2021-02-07 16:46:01 +01:00
# Load Spring without loading other gems in the Gemfile, for speed.
Bundler.locked_gems.specs.find { |spec| spec.name == "spring" }&.tap do |spring|
2020-10-17 12:16:28 +02:00
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
2021-02-07 16:46:01 +01:00
gem "spring", spring.version
require "spring/binstub"
rescue Gem::LoadError
# Ignore when Spring is not installed.
2020-10-17 12:16:28 +02:00
end
end