]> git.openstreetmap.org Git - rails.git/blobdiff - lib/daemons/gpx_import_ctl
Fix new rubocop warnings
[rails.git] / lib / daemons / gpx_import_ctl
index fd06863fabdf549bab833c6a85d06252bb9d10f2..8b893a6b2780aa1bd0b93876b1890a8d3ce09984 100755 (executable)
@@ -1,12 +1,13 @@
 #!/usr/bin/env ruby
-require 'rubygems'
+require "rubygems"
 require "daemons"
-require 'yaml'
-require 'erb'
+require "yaml"
+require "erb"
 
 class Hash
   def with_symbols!
-    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
 
@@ -14,7 +15,9 @@ options = YAML.load(
   ERB.new(
     IO.read(
       File.dirname(__FILE__) + "/../../config/daemons.yml"
-    )).result).with_symbols!
+    )
+  ).result
+).with_symbols!
 options[:dir_mode] = options[:dir_mode].to_sym
 
-Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options
+Daemons.run File.dirname(__FILE__) + "/gpx_import.rb", options