class Tagrity::CLI

Public Instance Methods

logs() click to toggle source
# File lib/tagrity/cli.rb, line 37
def logs
  Command::Logs::call(options['n'], options['debug'])
end
revive() click to toggle source
# File lib/tagrity/cli.rb, line 42
def revive
  Command::Revive::call
end
start() click to toggle source
# File lib/tagrity/cli.rb, line 19
def start()
  Command::Start::call(options['fg'], options['fresh'])
end
status() click to toggle source
# File lib/tagrity/cli.rb, line 30
def status
  Command::Status::call
end
stop() click to toggle source
# File lib/tagrity/cli.rb, line 25
def stop()
  Command::Stop::call(options['dir'])
end
version() click to toggle source
# File lib/tagrity/cli.rb, line 12
def version()
  puts Tagrity::VERSION
end