Skip to content

Instantly share code, notes, and snippets.

@yaauie
Created May 3, 2013 21:30
Show Gist options
  • Save yaauie/5514366 to your computer and use it in GitHub Desktop.
Save yaauie/5514366 to your computer and use it in GitHub Desktop.
module FindTransformed
def find_transformed
self.each do |item|
result = yield(item)
return result if result
end
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment