File: parser.rb

package info (click to toggle)
ruby-mime 0.4.4-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 284 kB
  • sloc: ruby: 1,187; xml: 17; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module MIME

  #
  # Parse MIME messages, constructing Media objects for each MIME entity.
  #
  # TODO Implement
  #
  class Parser

    def initialize
      raise NotImplementedError.new('building a parser is a TODO')
    end

  end

end