Flowdock
set_headers(v) protected

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/uri/mailto.rb, line 196
    def set_headers(v)
      @headers = []
      if v
        v.scan(HEADER_REGEXP) do |x|
          @headers << x.split(/=/, 2)
        end
      end
    end
Register or log in to add new notes.