README.md in bencode-0.5.1 vs README.md in bencode-0.6.0
- old
+ new
@@ -20,21 +20,30 @@
Examples
--------
+Encoding objects is as simple as calling `#bencode` on them:
+
"foo bar".bencode # => "7:foo bar"
42.bencode # => "i42e"
[1, 2, 3].bencode # => "li1ei2ei3ee"
{"foo" => 1, "bar" => -10}.bencode # => "d3:bari-10e3:fooi1ee"
+Decoding a data stream is as easy as calling `BEncode.load(data)`.
+
+
License
-------
Released under the MIT license.
Contributors
------------
+- Daniel Schierbeck
- Mike Hodgson
+- Andrew Danforth
+- Eric Himmelreich
+- Allen Madsen