Closed mendab1e closed 7 years ago
Hello. During the usage of flickraw in my project I found that ResponseList doesn't support map!:
ResponseList
map!
NoMethodError: undefined method `map!' for #<FlickRaw::ResponseList:0x007fe817e772d0>
Enumerable only includes map without bang, so I decided to implement ResponseList#map! in this PR to give it more array-like behaviour.
Enumerable
map
ResponseList#map!
Hello. During the usage of flickraw in my project I found that
ResponseList
doesn't supportmap!
:Enumerable
only includesmap
without bang, so I decided to implementResponseList#map!
in this PR to give it more array-like behaviour.