homebrew-cask-versions/lib/hbc/cli/edit.rb
Roland Walker 774eae75a8 replace homebrew-fork method exec_editor
remove which_editor
remove safe_exec
2015-01-03 07:59:51 -05:00

24 lines
715 B
Ruby

class Hbc::CLI::Edit < Hbc::CLI::Base
def self.run(*args)
cask_tokens = cask_tokens_from(args)
raise Hbc::CaskUnspecifiedError if cask_tokens.empty?
# only respects the first argument
cask_token = cask_tokens.first.sub(/\.rb$/i, '')
cask_path = Hbc.path(cask_token)
odebug "Opening editor for Cask #{cask_token}"
unless cask_path.exist?
raise Hbc::CaskUnavailableError, %Q{#{cask_token}, run "brew cask create #{cask_token}" to create a new Cask}
end
exec_editor cask_path
end
# for mocking.
# todo: add an :exec parameter to SystemCommand
def self.exec_editor(*args)
Hbc::Utils.exec_editor(*args)
end
def self.help
"edits the given Cask"
end
end