module Bencoding module Array def to_bencoding "l"+collect{|item|item.to_bencoding}.join+"e" end end end