ex-uri-template
ex-uri-template copied to clipboard
RFC 6570 compliant URI template processor for Elixir
The test suite needs a few files to run: * `vendor/uritemplate-test/extended-tests.json` * `vendor/uritemplate-test/negative-tests.json` * `vendor/uritemplate-test/spec-examples.json` Could you add these to version control, please?
It would be useful to have a `.partial_expand/2` function or something similar that behaves like so: ``` elixir UriTemplate.partial_expand("http://example.com/request{?id,query}", id: "123") ``` could return something like: ``` elixir "http://example/request?id=123{&query}" ```...
When running an application with a docker image running with minimal OS dependencies (e.g. in continuous integration), it appears running mix commands will fail if the docker image doesn't have...