Sha256: 2ec0f60ef4f34baebd579866cc6dbc1a8a771097c67e47f96e5cd58a589e3fab

Contents?: true

Size: 1.8 KB

Versions: 26

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

module Bundler
  class CLI::Binstubs
    attr_reader :options, :gems
    def initialize(options, gems)
      @options = options
      @gems = gems
    end

    def run
      Bundler.definition.validate_runtime!
      path_option = options["path"]
      path_option = nil if path_option && path_option.empty?
      Bundler.settings.set_command_option :bin, path_option if options["path"]
      Bundler.settings.set_command_option_if_given :shebang, options["shebang"]
      installer = Installer.new(Bundler.root, Bundler.definition)

      installer_opts = {
        :force => options[:force],
        :binstubs_cmd => true,
        :all_platforms => options["all-platforms"],
      }

      if options[:all]
        raise InvalidOption, "Cannot specify --all with specific gems" unless gems.empty?
        @gems = Bundler.definition.specs.map(&:name)
        installer_opts.delete(:binstubs_cmd)
      elsif gems.empty?
        Bundler.ui.error "`bundle binstubs` needs at least one gem to run."
        exit 1
      end

      gems.each do |gem_name|
        spec = Bundler.definition.specs.find {|s| s.name == gem_name }
        unless spec
          raise GemNotFound, Bundler::CLI::Common.gem_not_found_message(
            gem_name, Bundler.definition.specs
          )
        end

        if options[:standalone]
          if gem_name == "bundler"
            Bundler.ui.warn("Sorry, Bundler can only be run via RubyGems.") unless options[:all]
            next
          end

          Bundler.settings.temporary(:path => (Bundler.settings[:path] || Bundler.root)) do
            installer.generate_standalone_bundler_executable_stubs(spec, installer_opts)
          end
        else
          installer.generate_bundler_executable_stubs(spec, installer_opts)
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
rubygems-update-3.4.18 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.18 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.17 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.17 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.16 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.16 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.15 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.15 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.14 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.14 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.13 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.13 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.12 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.12 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.11 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.11 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.10 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.10 lib/bundler/cli/binstubs.rb
rubygems-update-3.4.9 bundler/lib/bundler/cli/binstubs.rb
bundler-2.4.9 lib/bundler/cli/binstubs.rb