mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00

(https://github.com/ruby/irb/pull/873)
* Replace ExtendCommand with Command and standardize command related names
1. Rename lib/irb/extend-command.rb to lib/irb/command.rb
2. Rename lib/irb/cmd/*.rb to lib/irb/command/*.rb
3. Rename test/irb/test_cmd.rb to test/irb/test_command.rb
4. Rename ExtendCommand to Command
* Alias ExtendCommand to Command and deprecate it
* Rename Command::Nop to Command::Base
* Not deprecate old constants just yet
* Add lib/irb/cmd/nop.rb back
462c1284af
54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
require 'shellwords'
|
|
|
|
require_relative "../source_finder"
|
|
|
|
module IRB
|
|
# :stopdoc:
|
|
|
|
module Command
|
|
class Edit < Base
|
|
category "Misc"
|
|
description 'Open a file with the editor command defined with `ENV["VISUAL"]` or `ENV["EDITOR"]`.'
|
|
|
|
class << self
|
|
def transform_args(args)
|
|
# Return a string literal as is for backward compatibility
|
|
if args.nil? || args.empty? || string_literal?(args)
|
|
args
|
|
else # Otherwise, consider the input as a String for convenience
|
|
args.strip.dump
|
|
end
|
|
end
|
|
end
|
|
|
|
def execute(*args)
|
|
path = args.first
|
|
|
|
if path.nil?
|
|
path = @irb_context.irb_path
|
|
elsif !File.exist?(path)
|
|
source = SourceFinder.new(@irb_context).find_source(path)
|
|
|
|
if source&.file_exist? && !source.binary_file?
|
|
path = source.file
|
|
end
|
|
end
|
|
|
|
unless File.exist?(path)
|
|
puts "Can not find file: #{path}"
|
|
return
|
|
end
|
|
|
|
if editor = (ENV['VISUAL'] || ENV['EDITOR'])
|
|
puts "command: '#{editor}'"
|
|
puts " path: #{path}"
|
|
system(*Shellwords.split(editor), path)
|
|
else
|
|
puts "Can not find editor setting: ENV['VISUAL'] or ENV['EDITOR']"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# :startdoc:
|
|
end
|