5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-01 20:24:17 +00:00
panel/bin/spring

19 lines
537 B
Plaintext
Raw Normal View History

2018-01-02 17:19:25 +00:00
#!/usr/bin/env ruby
2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
2018-01-02 17:19:25 +00:00
# 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'
lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
2019-03-26 15:32:20 +00:00
spring = lockfile.specs.detect { |spec| spec.name == 'spring' }
2018-01-02 17:19:25 +00:00
if spring
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
gem 'spring', spring.version
require 'spring/binstub'
end
end