README.md in fossyl-0.5.1 vs README.md in fossyl-0.6.0

- old
+ new

@@ -20,26 +20,24 @@ ```ruby require "fossyl" # Encoding -Fossyl.dump("strings") # => "7:strings" +Fossyl.dump("bytes") # => "5:bytes" Fossyl.dump(12) # => "i12e" Fossyl.dump([1, "two", 3]) # => "li1e3:twoi3ee" Fossyl.dump(a: 1, b: "two", c: [1]) # => "d1:ai1e1:b3:two1:cli1eee" # Decoding -Fossyl.load("7:strings") # => "strings" +Fossyl.load("5:bytes") # => "bytes" Fossyl.load("i12e") # => 12 Fossyl.load("li1e3:twoi3ee") # => [1, "two", 3] Fossyl.load("d1:ai1e1:b3:two1:cli1eee") # => { "a" => 1, "b" => "two", "c" => [1] } ``` ## Supported Platforms -* Ruby 1.9.3 -* JRuby _(1.9 mode)_ -* Rubinius _(1.9 mode)_ +* Ruby 2.0.x ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)