Tengo una variedad de hashes, @fathers.
a_father = { "father" => "Bob", "age" => 40 }
@fathers << a_father
a_father = { "father" => "David", "age" => 32 }
@fathers << a_father
a_father = { "father" => "Batman", "age" => 50 }
@fathers << a_father
¿Cómo puedo buscar en esta matriz y devolver una matriz de hashes para los que un bloque devuelve verdadero?
Por ejemplo:
@fathers.some_method("age" > 35) #=> array containing the hashes of bob and batman
Gracias.