halidator icon indicating copy to clipboard operation
halidator copied to clipboard

Small library for validating hal+json

Results 6 halidator issues
Sort by recently updated
recently updated
newest added

Can you provide this tool online? If not, could you provide steps to install and make it work from scratch? I have never worked with Ruby on Rails Thanks

Allows halidate to be run as a docker container: > docker build . -t halidate > http example.com/hal | docker run -i halidate

According to the hal spec, [`_links` are optional](https://tools.ietf.org/html/draft-kelly-json-hal-03#section-4.1.1) Please let me know if this is expected behavior. If so, I'm afraid I can't use this gem.

was using this project to validate hal+json responses in controller tests and noticed that when an _embedded object is invalid it is flagged as invalid but the error isn't maintained....

RubyGems.org doesn't report a license for your gem. This is because it is not specified in the [gemspec](http://docs.rubygems.org/read/chapter/20#license) of your last release. via e.g. ``` spec.license = 'MIT' # or...

Per http://tools.ietf.org/html/draft-kelly-json-hal-05: "values are either a Resource Object or an array of Resource Objects." The following just snuck through validation: ``` "_embedded": { "hd:foo": "some random string" } ```