Sha256: bc5a8b74b547ab89346fa13d0b7e58d43cd983164a5963a9993a0cffef769537
Contents?: true
Size: 941 Bytes
Versions: 2
Compression:
Stored size: 941 Bytes
Contents
begin # Check if an older version of bundler is installed $:.each do |path| if path =~ %r'/bundler-0.(\d+)' && $1.to_i < 9 err = "Please remove Bundler 0.8 versions." err << "This can be done by running `gem cleanup bundler`." abort(err) end end require 'bundler/cli' Bundler::CLI.start rescue Bundler::BundlerError => e Bundler.ui.error e.message Bundler.ui.debug e.backtrace.join("\n") exit e.status_code rescue Interrupt => e Bundler.ui.error "\nQuitting..." Bundler.ui.debug e.backtrace.join("\n") exit 1 rescue SystemExit => e exit e.status rescue Exception => e Bundler.ui.error "Unfortunately, a fatal error has occurred. " + "Please report this error to the Bundler issue tracker at " + "https://github.com/carlhuda/bundler/issues so that we can fix it. " + "Please include the full output of the command, your Gemfile and Gemfile.lock. " + "Thanks!" raise e end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bundler-talks-0.0.4 | lib/bundler-talks/runner.rb |
bundler-talks-0.0.3 | lib/bundler-talks/runner.rb |