Sha256: ff95e0f086ada103f20814988a8c6a2b0c57ac8918d4ff86cbc2e07299fd73fa
Contents?: true
Size: 424 Bytes
Versions: 3
Compression:
Stored size: 424 Bytes
Contents
#!/usr/bin/env ruby if File.exist?('Gemfile.lock') content = File.read('Gemfile.lock') $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'rubygems' require 'matching_bundle' if version = MatchingBundle.find_or_install_matching_version(content) $stderr.puts "using bunlder #{version}" exec "bundle _#{version}_ #{ARGV * " "}" # program exits here ... end end exec "bundle #{ARGV * " "}"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
matching_bundle-0.1.2 | bin/matching_bundle |
matching_bundle-0.1.1 | bin/matching_bundle |
matching_bundle-0.1.0 | bin/matching_bundle |