Fix rubocop warnings

This commit is contained in:
Tom Hughes 2016-08-16 19:27:14 +01:00
parent 778659a78c
commit 47e6637f18
2 changed files with 4 additions and 3 deletions

View file

@ -74,7 +74,7 @@ Metrics/MethodLength:
# Offense count: 1 # Offense count: 1
# Configuration parameters: CountComments. # Configuration parameters: CountComments.
Metrics/ModuleLength: Metrics/ModuleLength:
Max: 131 Max: 139
# Offense count: 4 # Offense count: 4
# Configuration parameters: CountKeywordArgs. # Configuration parameters: CountKeywordArgs.

View file

@ -72,9 +72,10 @@ module BrowseHelper
elsif wdt = wikidata_links(key, value) elsif wdt = wikidata_links(key, value)
# IMPORTANT: Note that wikidata_links() returns an array of hashes, unlike for example wikipedia_link(), # IMPORTANT: Note that wikidata_links() returns an array of hashes, unlike for example wikipedia_link(),
# which just returns one such hash. # which just returns one such hash.
wdt.map do |w| wdt = wdt.map do |w|
link_to(w[:title], w[:url], :title => t("browse.tag_details.wikidata_link", :page => w[:title].strip)) link_to(w[:title], w[:url], :title => t("browse.tag_details.wikidata_link", :page => w[:title].strip))
end.join(";").html_safe end
safe_join(wdt, ";")
elsif url = wiki_link("tag", "#{key}=#{value}") elsif url = wiki_link("tag", "#{key}=#{value}")
link_to h(value), url, :title => t("browse.tag_details.wiki_link.tag", :key => key, :value => value) link_to h(value), url, :title => t("browse.tag_details.wiki_link.tag", :key => key, :value => value)
elsif url = telephone_link(key, value) elsif url = telephone_link(key, value)