7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'lib/Help.rb', line 7
def self.printHelp
puts "bakeConv #{BConv::Version.number}\n\n"
puts "Usage: bakeConv [options]"
puts "-f, --file <configFile> Config name for your conversion."
puts "[-p, --project] <projName> Project to convert (default are all projects mentioned in the config file).\n\n"
puts "-v, --version Print version."
puts "-h, --help Print this help."
puts "--show_doc Open documentation."
puts "--show_license Print the license."
puts "--debug Print debug output."
end
|