method
set_headers
v1_8_6_287 -
Show latest stable
- Class:
URI::MailTo
set_headers(v)protected
No documentation available.
# File lib/uri/mailto.rb, line 196
def set_headers(v)
@headers = []
if v
v.scan(HEADER_REGEXP) do |x|
@headers << x.split(/=/o, 2)
end
end
end