README.md in yq-0.0.3 vs README.md in yq-0.1.0
- old
+ new
@@ -1,8 +1,8 @@
# Yq
-Use `yq` to parse YAML documents using [JMESPath](http://jmespath.org/). This gem is a simple wrapper around the [jmespath gem](https://github.com/jmespath/jmespath.rb).
+Use `yq` to parse YAML documents using [jq](https://stedolan.github.io/jq/). This gem is a simple wrapper around the executable. `jq` should be available in your path to use this gem.
## Installation
Add this line to your application's Gemfile:
@@ -27,18 +27,18 @@
---
stuff:
foo:
bar: baz
-$ cat stuff.yml | yq 'stuff.foo'
+$ cat stuff.yml | yq '.stuff.foo'
---
bar: baz
```
## Contributing
-1. Fork it ( https://github.com/[my-github-username]/yq/fork )
+1. Fork it ( https://github.com/jim80net/yq/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request