]> git.openstreetmap.org Git - rails.git/blobdiff - lib/daemons/gpx_import_ctl
Fix most auto-correctable rubocop issues
[rails.git] / lib / daemons / gpx_import_ctl
index 32c5f34abe5cc97694e3600815131f2ed671b8c8..fd06863fabdf549bab833c6a85d06252bb9d10f2 100755 (executable)
@@ -6,15 +6,15 @@ require 'erb'
 
 class Hash
   def with_symbols!
-    self.keys.each{|key| self[key.to_s.to_sym] = self[key] }; self
+    keys.each { |key| self[key.to_s.to_sym] = self[key] }; self
   end
 end
 
 options = YAML.load(
   ERB.new(
-  IO.read(
-  File.dirname(__FILE__) + "/../../config/daemons.yml"
-  )).result).with_symbols!
+    IO.read(
+      File.dirname(__FILE__) + "/../../config/daemons.yml"
+    )).result).with_symbols!
 options[:dir_mode] = options[:dir_mode].to_sym
 
 Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options