blob: e6ca3d7bc9924a6e86f4cc0f8cbfe43a2044efd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
module Hbc
class CLI
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)
<<~EOS
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
|