Method: Dri::CLI#faq

Defined in:
lib/dri/cli.rb

#faqObject



79
80
81
82
83
84
85
86
87
88
89
# File 'lib/dri/cli.rb', line 79

def faq(*)
  if options[:help]
    invoke :help, ['faq']
  else
    begin
      Dri::Commands::FAQ.new(options).execute
    rescue Dri::Commands::FAQ::ExitCommand
      puts "Exiting faq command..."
    end
  end
end