Class: IndexHtml::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/index_html/cli.rb

Instance Method Summary collapse

Instance Method Details

#generateObject



30
31
32
33
34
35
36
37
# File 'lib/index_html/cli.rb', line 30

def generate
  opts = options.deep_symbolize_keys
  if opts[:version]
    puts "You are using IndexHtml Version #{IndexHtml::VERSION}"
    exit
  end
  run(opts)
end

#usageObject



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"