Sha256: 1cc36d45a6c75f5819f4c6692e6c60c2018cefda3cb17ddcc7c0da0a6946d557
Contents?: true
Size: 498 Bytes
Versions: 93
Compression:
Stored size: 498 Bytes
Contents
#!/usr/bin/env ruby # 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) if spring = lockfile.specs.detect { |spec| spec.name == "spring" } Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path gem 'spring', spring.version require 'spring/binstub' end end
Version data entries
93 entries across 64 versions & 14 rubygems