File: named_structured_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 (10 lines) | stat: -rw-r--r-- 227 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# encoding: utf-8
# frozen_string_literal: true

module Mail
  class NamedStructuredField < StructuredField #:nodoc:
    def initialize(value = nil, charset = nil)
      super self.class::NAME, value, charset
    end
  end
end