Method: EventMachine::HttpDecoders.decoder_for_encoding
- Defined in:
- lib/em-http/decoders.rb
.decoder_for_encoding(encoding) ⇒ Object
16 17 18 19 20 21 |
# File 'lib/em-http/decoders.rb', line 16 def decoder_for_encoding(encoding) DECODERS.each { |d| return d if d.encoding_names.include? encoding } nil end |