Sha256: 67822aabe0a2011ef00de1365f542b5c13f2a8cc7318329c484ab3fc62fd3a19
Contents?: true
Size: 384 Bytes
Versions: 16
Compression:
Stored size: 384 Bytes
Contents
# encoding: utf-8 module Mail class ContentLocationElement # :nodoc: include Mail::Utilities def initialize( string ) content_location = Mail::Parsers::ContentLocationParser.new.parse(string) @location = content_location.location end def location @location end def to_s(*args) location.to_s end end end
Version data entries
16 entries across 15 versions & 7 rubygems