rename variable inside block

This commit is contained in:
Fabian Rodriguez 2014-03-27 19:53:28 -03:00
parent adcfde14ed
commit 302bc46914
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ module Jekyll
def post_attr_hash(post_attr)
# Build a hash map based on the specified post attribute ( post attr =>
# array of posts ) then sort each array in reverse order.
hash = Hash.new { |hash, key| hash[key] = [] }
hash = Hash.new { |h, key| h[key] = [] }
posts.each { |p| p.send(post_attr.to_sym).each { |t| hash[t] << p } }
hash.values.map { |sortme| sortme.sort! { |a, b| b <=> a } }
hash