module Bencoding module Hash def to_bencoding "d"+sort.collect{|key, item|key.to_bencoding+item.to_bencoding}.join+"e" end end end