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 <<-EOS
Usage:
  index_html

Options:
  -b, [--base-dir=BASE_DIR]                # Base directory
                                       # Default: . (current directory)
  -e, [--exts=one two three]               # List of extensions to search for
  -f, [--non-exts=one two three]           # List of files without extension to search for
  -n, [--inc-words=one two three]          # List of words to be included in the result if any
  -x, [--exc-words=one two three]          # List of words to be excluded from the result if any
  -i, [--ignore-case], [--no-ignore-case]  # Match case insensitively
                                       # Default: true
  -r, [--recursive], [--no-recursive]      # Search for files recursively
                                       # Default: true
  -v, [--version], [--no-version]          # Display version information
  -p, [--prefix=PREFIX]                    # Prefix string to the URL
                                       # Default: .
  -d, [--indent=N]                         # Indentation to each list item in the output
                                       # Default: 6
  -o, [--output=OUTPUT]                    # Output file name
                                       # Default: index.html

Generate the index.html base on simple criteria
  EOS
end