Class/Module Index [+]

Quicksearch

TMail::ContentDispositionHeader

Constants

PARSE_TYPE

Public Instance Methods

[]( key ) click to toggle source
# File lib/tmail/header.rb, line 889
def []( key )
  ensure_parsed
  @params and unquote(@params[key])
end
[]=( key, val ) click to toggle source
# File lib/tmail/header.rb, line 894
def []=( key, val )
  ensure_parsed
  (@params ||= {})[key] = val
end
disposition() click to toggle source
# File lib/tmail/header.rb, line 869
def disposition
  ensure_parsed
  @disposition
end
disposition=( str ) click to toggle source
# File lib/tmail/header.rb, line 874
def disposition=( str )
  ensure_parsed
  @disposition = str.downcase
end
params() click to toggle source
# File lib/tmail/header.rb, line 879
def params
  ensure_parsed
  unless @params.blank?
    @params.each do |k, v|
      @params[k] = unquote(v)
    end
  end
  @params
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.