README.md in wildcard_matchers-0.3.1 vs README.md in wildcard_matchers-0.4.0

- old
+ new

@@ -47,9 +47,15 @@ ### helpers * nil_or * nil_or(is_a_string) === nil #=> true * nil_or(is_a_string) === "a" #=> true +* any_of + * any_of(String, /b/) === "a" #=> true + * any_of(Integer, /b/) === "a" #=> false +* all_of + * all_of(String, /a/) === "a" #=> true + * all_of(String, /b/) === "a" #=> false * for_all * for_all(is_a_string) === %w[ a b c ] #=> true * for_any * for_any(is_a_string) === [ 1, "1" ] #=> true * responding