]> git.openstreetmap.org Git - rails.git/commitdiff
Fix new rubocop warnings
authorTom Hughes <tom@compton.nu>
Tue, 16 Feb 2021 21:14:54 +0000 (21:14 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 16 Feb 2021 21:14:54 +0000 (21:14 +0000)
app/helpers/application_helper.rb
app/models/node.rb
app/models/old_node.rb
app/models/old_relation.rb
app/models/old_way.rb
app/models/relation.rb
app/models/way.rb

index db8b51f5cd9e7f7d30b904bf3cd227913c128113..c8473adfc3d777f72f65d6c69f207e0e20721966 100644 (file)
@@ -9,12 +9,12 @@ module ApplicationHelper
     end
   end
 
-  def rss_link_to(*args)
-    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), Hash[*args], :class => "rsssmall")
+  def rss_link_to(args = {})
+    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall")
   end
 
-  def atom_link_to(*args)
-    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), Hash[*args], :class => "rsssmall")
+  def atom_link_to(args = {})
+    link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall")
   end
 
   def richtext_area(object_name, method, options = {})
index a5346e87f39b71f297b9b6b4948d01f271d2618e..5e799c8d9374b1562d61035b8b710f81f27a64de 100644 (file)
@@ -207,7 +207,7 @@ class Node < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[node_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= node_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :tags
index fe1a900136466472cb258198c3caa6a0b796fdd4..620cc24d227029091e610bfccb0813bb792c0449 100644 (file)
@@ -105,7 +105,7 @@ class OldNode < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[old_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= old_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :tags
index bfbe673b0881865611bcdfa64b2d2fa6188d04e4..51aeb9c4c533f296eaa5a1eaa7a113cca93b46e9 100644 (file)
@@ -83,7 +83,7 @@ class OldRelation < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[old_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= old_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :members, :tags
index 247123005c3d4464ec1b49a52254e12ad4ff91c9..3260f2a1f57acbed3755fe691949d8e14fa1fbbc 100644 (file)
@@ -81,7 +81,7 @@ class OldWay < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[old_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= old_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :nds, :tags
index 5ed838e107ea270671c7551d440ad0e014be6aae..365ea533e11259aa3f9ae9ebc495cb990b400c10 100644 (file)
@@ -131,7 +131,7 @@ class Relation < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[relation_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= relation_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :members, :tags
index 0150a2ee398d5dc793c335906fa5d1e0371176c8..7bb82b281bc4e10603ea2ffc29eee928c4ff9709 100644 (file)
@@ -113,7 +113,7 @@ class Way < ApplicationRecord
   end
 
   def tags
-    @tags ||= Hash[way_tags.collect { |t| [t.k, t.v] }]
+    @tags ||= way_tags.collect { |t| [t.k, t.v] }.to_h
   end
 
   attr_writer :nds, :tags