mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 14:26:53 -06:00
24 lines
715 B
Ruby
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
|