ToolJet/bin/spring

15 lines
494 B
Text
Raw Normal View History

2021-03-31 13:38:49 +00:00
#!/usr/bin/env ruby
2021-04-29 06:41:23 +00:00
if !defined?(Spring) && [nil, 'development', 'test'].include?(ENV['RAILS_ENV'])
gem 'bundler'
require 'bundler'
2021-03-31 13:38:49 +00:00
# Load Spring without loading other gems in the Gemfile, for speed.
2021-04-29 06:41:23 +00:00
Bundler.locked_gems&.specs&.find { |spec| spec.name == 'spring' }&.tap do |spring|
2021-03-31 13:38:49 +00:00
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
2021-04-29 06:41:23 +00:00
gem 'spring', spring.version
require 'spring/binstub'
2021-03-31 13:38:49 +00:00
rescue Gem::LoadError
# Ignore when Spring is not installed.
end
end