README.md in wildcard_matchers-0.0.3 vs README.md in wildcard_matchers-0.0.4
- old
+ new
@@ -38,11 +38,11 @@
### helpers
* nil_or
* nil_or(is_a_string) === nil #=> true
* nil_or(is_a_string) === "a" #=> true
-* all
- * all(is_a_string) === %w[ a b c ] #=> true
+* for_all
+ * for_all(is_a_string) === %w[ a b c ] #=> true
## How it works
It is very simple. Recursive match using ===, and Class, Range, and Proc act as wildcard matchers.