README.md in wildcard_matchers-0.1.4 vs README.md in wildcard_matchers-0.1.5
- old
+ new
@@ -31,9 +31,11 @@
* 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
+* with_uri_template and witout_query!
+ * with_uri_template("http://example.com/users", "id" => "1").without_query! === "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