main()
click to toggle source
# File lib/tj3ts_receiver.rb, line 42 42: def main 43: super 44: ts = TimeSheetReceiver.new('tj3ts_receiver') 45: @rc.configure(ts, 'global') 46: @rc.configure(ts, 'timesheets') 47: @rc.configure(ts, 'timesheets.receiver') 48: ts.workingDir = @workingDir if @workingDir 49: ts.dryRun = @dryRun 50: 51: ts.processEmail 52: 0 53: end