I run a file like this:
ruby hello.rb world.csv data.csv
How would the start file look? I have this.
require 'daemons'
pwd = File.dirname(File.expand_path(__FILE__))
wFile = "#{pwd}/world.csv"
dFile = "#{pwd}/data.csv"
Daemons.run("hello.rb #{wFile} #{dFile}")