40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/index_html/cli.rb', line 40
def usage
puts "Usage:\n index_html\n\nOptions:\n -b, [--base-dir=BASE_DIR] # Base directory\n # Default: . (current directory)\n -e, [--exts=one two three] # List of extensions to search for\n -f, [--non-exts=one two three] # List of files without extension to search for\n -n, [--inc-words=one two three] # List of words to be included in the result if any\n -x, [--exc-words=one two three] # List of words to be excluded from the result if any\n -i, [--ignore-case], [--no-ignore-case] # Match case insensitively\n # Default: true\n -r, [--recursive], [--no-recursive] # Search for files recursively\n # Default: true\n -v, [--version], [--no-version] # Display version information\n -p, [--prefix=PREFIX] # Prefix string to the URL\n # Default: .\n -d, [--indent=N] # Indentation to each list item in the output\n # Default: 6\n -o, [--output=OUTPUT] # Output file name\n # Default: index.html\n\nGenerate the index.html base on simple criteria\n EOS\nend\n"
|