Bdecodes the String object and returns the data serialized through bencoding.
"li1ei2ei3ee".bdecode #=> [1, 2, 3]
80 81 82
# File 'lib/bencode/decode.rb', line 80 def bdecode BEncode.load(self) end