class Tsearch::CLI

Handle the application command line parsing and the dispatch to various command objects

@api public

Constants

Error

Error raised by this runner

Public Class Methods

exit_on_failure?() click to toggle source
# File lib/tsearch/cli.rb, line 14
def self.exit_on_failure?
  true
end

Public Instance Methods

version() click to toggle source
# File lib/tsearch/cli.rb, line 19
def version
  require_relative 'version'
  puts "v#{Tsearch::VERSION}"
end