Sha256: c5728c2e7b3f01193180eca21b1e9514ee5289d96e362c9bd3a1a430e1a03975

Contents?: true

Size: 692 Bytes

Versions: 56

Compression:

Stored size: 692 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

# Exit cleanly from an early interrupt
Signal.trap("INT") do
  Bundler.ui.debug("\n#{caller.join("\n")}") if defined?(Bundler)
  exit 1
end

base_path = File.expand_path("../lib", __dir__)

if File.exist?(base_path)
  $LOAD_PATH.unshift(base_path)
end

require "bundler"

require "bundler/friendly_errors"

Bundler.with_friendly_errors do
  require "bundler/cli"

  # Allow any command to use --help flag to show help for that command
  help_flags = %w[--help -h]
  help_flag_used = ARGV.any? {|a| help_flags.include? a }
  args = help_flag_used ? Bundler::CLI.reformatted_help_args(ARGV) : ARGV

  Bundler::CLI.start(args, debug: true)
end

Version data entries

56 entries across 56 versions & 4 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/bundler-2.5.21/exe/bundle
rubygems-update-3.6.3 bundler/exe/bundle
bundler-2.6.3 exe/bundle
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/bundler-2.5.5/exe/bundle
rubygems-update-3.6.2 bundler/exe/bundle
bundler-2.6.2 exe/bundle
rubygems-update-3.6.1 bundler/exe/bundle
bundler-2.6.1 exe/bundle
rubygems-update-3.6.0 bundler/exe/bundle
bundler-2.6.0 exe/bundle
rubygems-update-3.5.23 bundler/exe/bundle
bundler-2.5.23 exe/bundle
rubygems-update-3.5.22 bundler/exe/bundle
bundler-2.5.22 exe/bundle
rubygems-update-3.5.21 bundler/exe/bundle
bundler-2.5.21 exe/bundle
rubygems-update-3.5.20 bundler/exe/bundle
bundler-2.5.20 exe/bundle
rubygems-update-3.5.19 bundler/exe/bundle
bundler-2.5.19 exe/bundle