11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/onceover/cli/init.rb', line 11
def self.command
@command ||= Cri::Command.define do
name 'init'
usage 'init'
summary 'Sets up a controlrepo for testing from scratch'
description "This will generate all of the config files required for the onceover\ntool to work.\n DESCRIPTION\n\n run do |opts, args, cmd|\n Onceover::Controlrepo.init(Onceover::Controlrepo.new(opts))\n # Would it make sense for #init to be a class instance method of Controlrepo ? Then you could:\n # cp = Onceover::Controlrepo.new(opts)\n # cp.init\n end\n end\nend\n"
|