Simple Immutable Ruby URI builder
Class Iri helps you build a URI and then modify its parts via a simple fluent interface, for example: Iri.new('http://google.com/').add(limit: 50) will produce http://google.com?limit=50. The gem is here: https://github.com/yegor256/iri
Post a comment