class Tmuxinator::Doctor

Public Class Methods

editor?() click to toggle source
# File lib/tmuxinator/doctor.rb, line 6
def editor?
  !ENV["EDITOR"].nil? && !ENV["EDITOR"].empty?
end
installed?() click to toggle source
# File lib/tmuxinator/doctor.rb, line 10
def installed?
  Kernel.system("type tmux > /dev/null")
end
shell?() click to toggle source
# File lib/tmuxinator/doctor.rb, line 14
def shell?
  !ENV["SHELL"].nil? && !ENV["SHELL"].empty?
end