Module: Enumerable
- Defined in:
- lib/git_stats/core_extensions/enumerable.rb
Instance Method Summary collapse
Instance Method Details
#first!(&block) ⇒ Object
4 5 6 7 8 9 |
# File 'lib/git_stats/core_extensions/enumerable.rb', line 4 def first!(&block) matching = find(&block) raise 'Sequence contains no matching elements' if matching.nil? matching end |