README.md in json_select-0.1.2 vs README.md in json_select-0.1.3
- old
+ new
@@ -1,6 +1,6 @@
-# JSONSelect
+# JSONSelect [](http://travis-ci.org/fd/json_select)
**CSS-like selectors for JSON.**
[More info about the JSON:select format](http://jsonselect.org/)
@@ -46,10 +46,12 @@
"seatingPreference" => [ "window", "aisle" ],
"drinkPreference" => [ "beer", "whiskey", "wine" ],
"weight" => 172
}
-JSONSelect('string:first-child').match(json) # => ["Lloyd", "Bulgarian", "English", "Spanish", "window", "beer"]
+JSONSelect('string:first-child').test(json) # => true
+JSONSelect('string:first-child').match(json) # => "window"
+JSONSelect('string:first-child').matches(json) # => ["window", "beer"]
```
## Note on Patches/Pull Requests
* Fork the project.
\ No newline at end of file