Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

ShellRechargeSolutionsEU/uri-template

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uri-template Build Status

URI Template

Complete implementation of RFC-6570 (uri-templates) in Scala

Apache 2 Licenced

Example of usage (see the tests for more)

import uritemplate._
import Syntax._

val template = URITemplate("http://example.com/hello/{variable}")
val expanded = template expand ("variable" := "world")

expanded == "http://example.com/hello/world"

Dependencies

SBT:

libraryDependencies += "com.newmotion" %% "uri-template" % "1.0.3-SNAPSHOT"

Packages

No packages published

Languages

  • Scala 100.0%