55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# File 'lib/edfize.rb', line 55
def self.help
help_message = <<-EOT
Usage: edfize COMMAND [ARGS]
The most common edfize commands are:
[t]est Check EDFs in directory and subdirectories
--failing Only display failing tests
--quiet Suppress failing test descriptions
[r]un Print EDF header information
[h]elp Show edfize command documentation
[v]ersion Returns the version of Edfize
Commands can be referenced by the first letter:
Ex: `edfize t`, for test
EOT
puts help_message
end
|