# File lib/backports/1.8.7/string.rb, line 29
  def end_with?(*suffixes)
    suffixes.any? do |suffix|
      if suffix.respond_to? :to_str
        suffix = suffix.to_str
        self[-suffix.length, suffix.length] == suffix
      end
    end
  end