method

open_editor

open_editor(path)
public

No documentation available.

# File lib/rubygems/commands/open_command.rb, line 74
  def open_editor(path)
    Dir.chdir(path) do
      system(*@editor.split(/\s+/) + [path])
    end
  end