README.md in wildcard_matchers-0.1.3 vs README.md in wildcard_matchers-0.1.4

- old
+ new

@@ -28,9 +28,12 @@ * is_bool === object #=> false * is_time * is_time === "2012-05-13" #=> true * is_url * is_url(:host => "example.com") === "http://example.com" #=> true +* with_uri_template + * with_uri_template("http://example.com/users/{id}", "id" => "1") === "http://example.com/users/1" #=> true + * with_uri_template("http://example.com/users{?id}", "id" => "1") === "http://example.com/users?id=1" #=> true * hash_includes * hash_includes(:a) === { :a => 1 } #=> true * hash_includes(:b) === { :a => 1 } #=> false * hash_includes(:a => Integer) === { :a => 1 } #=> true * hash_includes(:a => 2) === { :a => 1 } #=> false