module RSpec::Support::ShellOut

def strip_known_warnings(input)

def strip_known_warnings(input)
  input.split("\n").reject do |l|
    LINES_TO_IGNORE.any? { |to_ignore| l =~ to_ignore } ||
    # Remove blank lines
    l == "" || l.nil?
  end.join("\n")
end