Help language development. Donate to The Perl Foundation
Implementation of https://tools.ietf.org/html/rfc6570 for Raku
use URI::Template; my $template = URI::Template.new(template => 'http://foo.com{/foo,bar}'); say $template.process(foo => 'baz', bar => 'quux'); # http://foo.com/baz/quux
This provides an implementation of RFC 6570 which allows for the definition of a URI through variable expansion.
Assuming you have a working Rakudo installation you should be able to install this with zef :
# From the source directory
zef install .
# Remote installation
zef install URI::Template
Suggestions/patches are welcomed via github at https://github.com/jonathanstowe/URI-Template
The test data covers all of the examples given in the RFC and a few others, if you think the behaviour is incorrect please state the section of the RFC and provide a failing example with the required variables, template and the expected output.
Please see the LICENCE file in the distribution
© Jonathan Stowe 2015, 2016, 2017, 2019, 2020
The testing uses the test data from https://github.com/uri-templates/uritemplate-test please see the README.md in the t/data/uritemplate-test for the license for that project.