URITemplate.swift icon indicating copy to clipboard operation
URITemplate.swift copied to clipboard

Swift implementation of URI Template (RFC6570)

Results 4 URITemplate.swift issues
Sort by recently updated
recently updated
newest added

Hi! If I execute: ``` let template = URITemplate(template: "https://api.github.com/repos/{owner}/{repo}{?token}") let variables = template.extract("https://api.github.com/repos/kylef/PathKit?token=1234") ``` Then I get: "owner" = "kylef" "repo" = "PathKit" "token" = "?token=1234" What do I...

Hi, when using carthage I generate the project using SPM as described in [kylef's blog post](https://fuller.li/posts/using-swift-package-manager-with-carthage/). E.g. for iOS when using the built framework in my application, the deployment target...

Currently we have `variables` but it's not possible to tell which are optional/required.