Sha256: c7d91c895340085f18438c42f7e92c5466be3a62f74f34c451e7d3a7ae41f800

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

#!/usr/bin/env ruby
=begin

TORK-HERALD 1 2012-01-29 17.0.1
==============================================================================

NAME
------------------------------------------------------------------------------

tork-herald - reports modified files

SYNOPSIS
------------------------------------------------------------------------------

`tork-herald` [*OPTION*]...

DESCRIPTION
------------------------------------------------------------------------------

This program monitors the current working directory and prints relative paths
of modified files in batches of single-line JSON arrays to the standard output
stream.

OPTIONS
------------------------------------------------------------------------------

`-h`, `--help`
  Display this help manual using man(1).

SEE ALSO
------------------------------------------------------------------------------

tork(1), tork-driver(1), tork-master(1), tork-herald(1)

=end =========================================================================

$0 = File.basename(__FILE__) # for easier identification in ps(1) output

require 'binman'
BinMan.help

require 'guard'
require 'guard/listener'
require 'json'

listener = Guard::Listener.select_and_init({})
listener.on_change {|files| puts JSON.dump(files) }
STDOUT.sync = true # don't buffer puts()
listener.start

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tork-17.0.1 bin/tork-herald