Sha256: 91287b4702ed120dabaf228144639d3886a209a59c66b7627ee2a03d437533b5

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

# OpenCommand will open a gem's source path
class Gem::Commands::OpenCommand < Gem::Command
  include OpenGem::CommonOptions
  include Gem::VersionOption
  
  def initialize
    super 'open', "Opens the gem's source directory with $GEM_OPEN_EDITOR or $EDITOR", 
      :command => nil, 
      :version=>  Gem::Requirement.default,
      :latest=>   false
    
    add_command_option
    add_latest_version_option
    add_version_option
  end
  
  def arguments # :nodoc:
    "GEMNAME       gem to open"
  end

  def execute
    name = get_one_gem_name
    path = get_path(name)
    
    open_gem(path) if path
  end
  
  def get_path(name)
    if spec = get_spec(name)
      spec.full_gem_path
    end
  end

  def open_gem(path)
    editor = options[:command] || ENV['GEM_OPEN_EDITOR'] || ENV['EDITOR']
    if !editor
      say "Either set $EDITOR, or use -c <command_name>"
    else
      command_parts = Shellwords.shellwords(editor)
      command_parts << path
      success = system(*command_parts)
      if !success 
        raise Gem::CommandLineError, "Could not run '#{editor} #{path}', exit code: #{$?.exitstatus}"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
adamsanderson-open_gem-1.3.0 lib/rubygems/commands/open_command.rb
adamsanderson-open_gem-1.3.1 lib/rubygems/commands/open_command.rb
adamsanderson-open_gem-1.3.2 lib/rubygems/commands/open_command.rb
open_gem-1.3.0 lib/rubygems/commands/open_command.rb
open_gem-1.3.1 lib/rubygems/commands/open_command.rb