Sha256: 7c5bd7a77298a8ceb4d1b29354b35fbf3608ae08947985a8dbd7118fe0c6f837
Contents?: true
Size: 348 Bytes
Versions: 50
Compression:
Stored size: 348 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true require 'mail/parsers/content_location_parser' module Mail class ContentLocationElement # :nodoc: attr_reader :location def initialize(string) @location = Mail::Parsers::ContentLocationParser.parse(string).location end def to_s(*args) location.to_s end end end
Version data entries
50 entries across 36 versions & 9 rubygems