mattsears / nyan-cat-formatter

Nyan Cat inspired RSpec formatter!
http://mattsears.com/articles/2011/11/16/nyan-cat-rspec-formatter
MIT License
741 stars 81 forks source link

Fix issue with 1.8.7 and ree #36

Closed albertbellonch closed 11 years ago

albertbellonch commented 11 years ago

Hi @mattsears,

Enumerable#with_index is not defined in rubies 1.8.7 and ree, so the tests were stopped when hitting that line.

I just fixed it by using Enumerable#each_with_index, then using Enumerable#map.

Thanks,