2020-08-08 23:02:23 +01:00

47 lines
1021 B
Ruby

# frozen_string_literal: true
module Cask
class Cmd
class Create < AbstractCommand
def initialize(*)
super
raise CaskUnspecifiedError if args.empty?
raise ArgumentError, "Only one Cask can be created at a time." if args.count > 1
end
def run
cask_token = args.first
cask_path = CaskLoader.path(cask_token)
raise CaskAlreadyCreatedError, cask_token if cask_path.exist?
odebug "Creating Cask #{cask_token}"
File.open(cask_path, "w") do |f|
f.write self.class.template(cask_token)
end
exec_editor cask_path
end
def self.template(cask_token)
<<~RUBY
cask "#{cask_token}" do
version ""
sha256 ""
url "https://"
name ""
desc ""
homepage ""
app ""
end
RUBY
end
def self.help
"creates the given Cask and opens it in an editor"
end
end
end
end