Sha256: 5ad637ecbf70d575a84949216a397db5e85185dbe5ec2b318cbc707d65d22012

Contents?: true

Size: 1.29 KB

Versions: 23

Compression:

Stored size: 1.29 KB

Contents

# encoding: utf-8
# frozen_string_literal: true
# 
# = Comments Field
# 
# The Comments field inherits from UnstructuredField and handles the Comments:
# header field in the email.
# 
# Sending comments to a mail message will instantiate a Mail::Field object that
# has a CommentsField as its field type.
#  
# An email header can have as many comments fields as it wants.  There is no upper
# limit, the comments field is also optional (that is, no comment is needed)
# 
# == Examples:
# 
#  mail = Mail.new
#  mail.comments = 'This is a comment'
#  mail.comments    #=> 'This is a comment'
#  mail[:comments]  #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
#  mail['comments'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
#  mail['comments'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
# 
#  mail.comments = "This is another comment"
#  mail[:comments].map { |c| c.to_s } 
#  #=> ['This is a comment', "This is another comment"]
#
module Mail
  class CommentsField < UnstructuredField
    
    FIELD_NAME = 'comments'
    CAPITALIZED_FIELD = 'Comments'
    
    def initialize(value = nil, charset = 'utf-8')
      @charset = charset
      super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value))
      self.parse
      self
    end
    
  end
end

Version data entries

23 entries across 21 versions & 6 rubygems

Version Path
tdiary-5.0.6 vendor/bundle/gems/mail-2.6.6/lib/mail/fields/comments_field.rb
tdiary-5.0.5 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
tdiary-5.0.5 vendor/bundle/gems/mail-2.6.6/lib/mail/fields/comments_field.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
mail-2.6.6 lib/mail/fields/comments_field.rb
mail-2.7.0.rc1 lib/mail/fields/comments_field.rb
mail-2.6.6.rc1 lib/mail/fields/comments_field.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/mail-2.6.5/lib/mail/fields/comments_field.rb
mail-2.6.5 lib/mail/fields/comments_field.rb
mail-2.6.5.rc1 lib/mail/fields/comments_field.rb
tdiary-5.0.4 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
abaci-0.3.0 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/comments_field.rb
tdiary-5.0.2 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/comments_field.rb