File: content_description_field.rb

package info (click to toggle)
ruby-mail 2.9.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,720 kB
  • sloc: ruby: 73,664; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# encoding: utf-8
# frozen_string_literal: true

module Mail
  class ContentDescriptionField < NamedUnstructuredField #:nodoc:
    NAME = 'Content-Description'

    def self.singular?
      true
    end
  end
end