Sha256: 74cd723b169f3264f364ce6f2e4486b2bffdd47651e4510a2ab7d4c138f6ffb6

Contents?: true

Size: 507 Bytes

Versions: 19

Compression:

Stored size: 507 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)
  spring = lockfile.specs.detect { |spec| spec.name == 'spring' }
  if 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

19 entries across 18 versions & 1 rubygems

Version Path
totoro-1.0.7 test/totoro_test/bin/spring
totoro-1.0.6 test/totoro_test/bin/spring
totoro-1.0.6 pkg/totoro-1.0.5/test/totoro_test/bin/spring
totoro-1.0.5 test/totoro_test/bin/spring
totoro-1.0.4 test/totoro_test/bin/spring
totoro-1.0.3 test/totoro_test/bin/spring
totoro-1.0.2 test/totoro_test/bin/spring
totoro-1.0.1 test/totoro_test/bin/spring
totoro-1.0.0 test/totoro_test/bin/spring
totoro-0.6.1 test/totoro_test/bin/spring
totoro-0.6.0 test/totoro_test/bin/spring
totoro-0.5.7 test/totoro_test/bin/spring
totoro-0.5.6 test/totoro_test/bin/spring
totoro-0.5.5 test/totoro_test/bin/spring
totoro-0.5.4 test/totoro_test/bin/spring
totoro-0.5.3 test/totoro_test/bin/spring
totoro-0.5.2 test/totoro_test/bin/spring
totoro-0.5.1 test/totoro_test/bin/spring
totoro-0.5.0 test/totoro_test/bin/spring