grim/resticide

32bc94f303e2
Give the --help output some tlc, also added a --version argument
{
"name": "httpbin post json",
"request": {
"path": "/post",
"method": "POST",
"json": {
"foo": null,
"bar": 1,
"baz": true
},
"response": {
"statuscode": 200,
"json-schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"foo": {"enum": [null]},
"bar": {"enum": [1]},
"baz": {"enum": [true]}
},
"required": ["data"]
}
}
}
}