Sha256: 4275da3674a3ad0bbd1d85a7dce934f066f54c94f833c03380b6bbc343907f1c

Contents?: true

Size: 1.17 KB

Versions: 36

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

module Bundler
  class CLI::Open
    attr_reader :options, :name, :path
    def initialize(options, name)
      @options = options
      @name = name
      @path = options[:path] unless options[:path].nil?
    end

    def run
      raise InvalidOption, "Cannot specify `--path` option without a value" if !@path.nil? && @path.empty?
      editor = [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? }
      return Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR") unless editor
      return unless spec = Bundler::CLI::Common.select_spec(name, :regex_match)
      if spec.default_gem?
        Bundler.ui.info "Unable to open #{name} because it's a default gem, so the directory it would normally be installed to does not exist."
      else
        root_path = spec.full_gem_path
        Dir.chdir(root_path) do
          require "shellwords"
          command = Shellwords.split(editor) << File.join([root_path, path].compact)
          Bundler.with_original_env do
            system(*command)
          end || Bundler.ui.info("Could not run '#{command.join(" ")}'")
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 2 rubygems

Version Path
rubygems-update-3.4.20 bundler/lib/bundler/cli/open.rb
bundler-2.4.20 lib/bundler/cli/open.rb
rubygems-update-3.4.19 bundler/lib/bundler/cli/open.rb
bundler-2.4.19 lib/bundler/cli/open.rb
rubygems-update-3.4.18 bundler/lib/bundler/cli/open.rb
bundler-2.4.18 lib/bundler/cli/open.rb
rubygems-update-3.4.17 bundler/lib/bundler/cli/open.rb
bundler-2.4.17 lib/bundler/cli/open.rb
rubygems-update-3.4.16 bundler/lib/bundler/cli/open.rb
bundler-2.4.16 lib/bundler/cli/open.rb
rubygems-update-3.4.15 bundler/lib/bundler/cli/open.rb
bundler-2.4.15 lib/bundler/cli/open.rb
rubygems-update-3.4.14 bundler/lib/bundler/cli/open.rb
bundler-2.4.14 lib/bundler/cli/open.rb
rubygems-update-3.4.13 bundler/lib/bundler/cli/open.rb
bundler-2.4.13 lib/bundler/cli/open.rb
rubygems-update-3.4.12 bundler/lib/bundler/cli/open.rb
bundler-2.4.12 lib/bundler/cli/open.rb
rubygems-update-3.4.11 bundler/lib/bundler/cli/open.rb
bundler-2.4.11 lib/bundler/cli/open.rb