mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
41 lines
897 B
Ruby
41 lines
897 B
Ruby
module Hbc
|
|
class CLI
|
|
class Create < Base
|
|
def self.run(*args)
|
|
cask_tokens = cask_tokens_from(args)
|
|
raise CaskUnspecifiedError if cask_tokens.empty?
|
|
cask_token = cask_tokens.first.sub(/\.rb$/i, "")
|
|
cask_path = Hbc.path(cask_token)
|
|
odebug "Creating Cask #{cask_token}"
|
|
|
|
raise CaskAlreadyCreatedError, cask_token if cask_path.exist?
|
|
|
|
File.open(cask_path, "w") do |f|
|
|
f.write template(cask_token)
|
|
end
|
|
|
|
exec_editor cask_path
|
|
end
|
|
|
|
def self.template(cask_token)
|
|
<<-EOS.undent
|
|
cask '#{cask_token}' do
|
|
version ''
|
|
sha256 ''
|
|
|
|
url 'https://'
|
|
name ''
|
|
homepage ''
|
|
|
|
app ''
|
|
end
|
|
EOS
|
|
end
|
|
|
|
def self.help
|
|
"creates the given Cask and opens it in an editor"
|
|
end
|
|
end
|
|
end
|
|
end
|