projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
5bf4ce3
)
Update GPX daemon control script to match current template from the
author
Tom Hughes
<tom@compton.nu>
Sat, 5 Jan 2008 16:16:36 +0000
(16:16 +0000)
committer
Tom Hughes
<tom@compton.nu>
Sat, 5 Jan 2008 16:16:36 +0000
(16:16 +0000)
daemons plugin.
lib/daemons/gpx_import_ctl
patch
|
blob
|
history
diff --git
a/lib/daemons/gpx_import_ctl
b/lib/daemons/gpx_import_ctl
index 5730005a684a664a5558b9a84cd282373de6ba70..32c5f34abe5cc97694e3600815131f2ed671b8c8 100755
(executable)
--- a/
lib/daemons/gpx_import_ctl
+++ b/
lib/daemons/gpx_import_ctl
@@
-3,13
+3,18
@@
require 'rubygems'
require "daemons"
require 'yaml'
require 'erb'
require "daemons"
require 'yaml'
require 'erb'
-require 'active_support'
+
+class Hash
+ def with_symbols!
+ 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"
options = YAML.load(
ERB.new(
IO.read(
File.dirname(__FILE__) + "/../../config/daemons.yml"
- )).result).with_
indifferent_access
+ )).result).with_
symbols!
options[:dir_mode] = options[:dir_mode].to_sym
options[:dir_mode] = options[:dir_mode].to_sym
-Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options
\ No newline at end of file
+Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options