Method: Klomp::Frames::Frame#dump_headers
- Defined in:
- lib/klomp/frames.rb
#dump_headers ⇒ Object
24 25 26 27 28 |
# File 'lib/klomp/frames.rb', line 24 def dump_headers headers.map do |pair| pair.map {|x| x.to_s.gsub("\n","\\n").gsub(":","\\c").gsub("\\", "\\\\") }.join(':') end.join("\n").tap {|s| s << "\n" unless s.empty? } end |