Sha256: a231063a05017a8d5053b2f9dc0af486472e53b1fd19ef8d1db79255e2d3091c

Contents?: true

Size: 307 Bytes

Versions: 5

Compression:

Stored size: 307 Bytes

Contents

#!/usr/bin/env ruby

STDERR.sync = STDOUT.sync = true

require File.expand_path('../../lib/clockwork', __FILE__)
include Clockwork

usage = "clockwork <clock.rb>"
file = ARGV.shift or abort usage

file = "./#{file}" unless file.match(/^[\/.]/)

require file

trap('INT') do
	puts "\rExiting"
	exit
end

run

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
clockwork-0.3.1 bin/clockwork
clockwork-0.3.0 bin/clockwork
clockwork-0.2.4 bin/clockwork
clockwork-0.2.3 bin/clockwork
clockwork-0.2.2 bin/clockwork