main()
click to toggle source
# File lib/tj3ss_sender.rb, line 69 69: def main 70: super 71: ts = StatusSheetSender.new('tj3ss_sender') 72: @rc.configure(ts, 'global') 73: @rc.configure(ts, 'statussheets') 74: @rc.configure(ts, 'statussheets.sender') 75: ts.workingDir = @workingDir if @workingDir 76: ts.dryRun = @dryRun 77: ts.force = @force 78: ts.intervalDuration = @intervalDuration if @intervalDuration 79: ts.date = @date if @date 80: ts.hideResource = @hideResource if @hideResource 81: 82: ts.sendTemplates(@resourceList) 83: 0 84: end