module Guard::Compat::UI

def self.warning(message, options = {})

def self.warning(message, options = {})
  if Guard.const_defined?(:UI)
    Guard::UI.warning(message, options)
  else
    $stdout.puts(message)
  end
end