class BConv::Help

Public Class Methods

printHelp() click to toggle source
# 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