fixed block-variable-shadows-local-variable warning in LinkedIn strategy

This commit is contained in:
James A. Rosen 2010-06-12 22:45:08 -04:00 коммит произвёл James Rosen
Родитель 5973843611
Коммит 4963a3e25d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -32,9 +32,9 @@ module OmniAuth
'location' => person.xpath('location/name').text,
'image' => person.xpath('picture-url').text,
'description' => person.xpath('headline').text,
'urls' => person.css('member-url-resources member-url').inject({}) do |hash,element|
hash[element.xpath('name').text] = element.xpath('url').text
hash
'urls' => person.css('member-url-resources member-url').inject({}) do |h,element|
h[element.xpath('name').text] = element.xpath('url').text
h
end
}