module TerminalCommands

def self.can_open?

def self.can_open?
  (TerminalCommands.macosx? && `which open`.present?) ||
    (TerminalCommands.linux? && `which xdg-open`.present?)
end