Sha256: ac959a919ce6a6061c6be0ff51d0e0e606966b0645a58d516fedf23bc60cc8f6
Contents?: true
Size: 341 Bytes
Versions: 1
Compression:
Stored size: 341 Bytes
Contents
#!/usr/bin/env ruby $: << File.expand_path('../../lib', __FILE__) require 'file_scheduler' root = ARGV.shift command = ARGV.shift scheduler = FileScheduler::Base.new(root) case command when "contents" scheduler.contents.each do |content| puts "#{content} #{content.time_constraints}" end else puts scheduler.send(command) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
file_scheduler-0.0.2 | bin/file-scheduler |