class Tmuxinator::Doctor
Public Class Methods
editor?()
click to toggle source
# File lib/tmuxinator/doctor.rb, line 4 def editor? !ENV["EDITOR"].nil? && !ENV["EDITOR"].empty? end
installed?()
click to toggle source
# File lib/tmuxinator/doctor.rb, line 8 def installed? Kernel.system("type tmux > /dev/null") end
shell?()
click to toggle source
# File lib/tmuxinator/doctor.rb, line 12 def shell? !ENV["SHELL"].nil? && !ENV["SHELL"].empty? end