Method: Act::Command.options

Defined in:
lib/act/command.rb

.optionsObject



22
23
24
25
26
27
28
29
30
# File 'lib/act/command.rb', line 22

def self.options
  [
    ['--open', 'Open the file in $EDITOR instead of printing it'],
    ['--prettify', 'Prettify output'],
    ['--always-color', 'Always color the output'],
    ['--line-numbers', 'Show output with line numbers'],
    ['--lexer=NAME', 'Use the given lexer'],
  ].concat(super)
end