README.md in wildcard_matchers-0.1.6 vs README.md in wildcard_matchers-0.1.7
- old
+ new
@@ -26,11 +26,11 @@
* is_bool === true #=> true
* is_bool === false #=> true
* is_bool === object #=> false
* is_time
* is_time === "2012-05-13" #=> true
-* is_url
- * is_url(:host => "example.com") === "http://example.com" #=> true
+* is_uri
+ * is_uri(: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
* with_uri_template and witout_query!
* with_uri_template("http://example.com/users", "id" => "1").without_query! === "http://example.com/users?id=1" #=> true