X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dffd645c5086249fd546886df2c50f2437ac4fca..3b26ff0c40fa127e0d0732bce3d7116e2fa7695d:/lib/daemons/gpx_import_ctl diff --git a/lib/daemons/gpx_import_ctl b/lib/daemons/gpx_import_ctl index 32c5f34ab..8b893a6b2 100755 --- a/lib/daemons/gpx_import_ctl +++ b/lib/daemons/gpx_import_ctl @@ -1,20 +1,23 @@ #!/usr/bin/env ruby -require 'rubygems' +require "rubygems" require "daemons" -require 'yaml' -require 'erb' +require "yaml" +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 +Daemons.run File.dirname(__FILE__) + "/gpx_import.rb", options