# File lib/mime/types.rb, line 57 57: def like?(other) 58: if other.respond_to?(:simplified) 59: @simplified == other.simplified 60: else 61: @simplified == Type.simplified(other) 62: end 63: end