af83/chouette-core

View on GitHub
app/helpers/core_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CoreHelper
  module ::Enumerable
    def zip_map
      map { |ele| [ele, yield(ele)] }
    end
  end
end