Sha256: 45697cd94b3a0b6fb50d1a9462fdebfb2d164893d13057f66bcc154628e094be
Contents?: true
Size: 889 Bytes
Versions: 11
Compression:
Stored size: 889 Bytes
Contents
NAME --------------- rego SYNOPSIS --------------- rego ./files ./to ./watch -- command-to-run INSTALL --------------- gem install rego DESCRIPTION --------------- run arbitrary commands easily when files change PARAMETERS --------------- --help, -h EXAMPLES --------------- ```bash # say hai whenever the file foo.txt changes # ~> rego foo.txt -- echo hai # say hai whenever any file (recursively) in bar changes # ~> rego ./bar/ -- echo hai # echo *the file that changed* when any file (recursively) in bar changes # ~> rego ./bar/ -- echo "@ was changed" # run a specific test whenever anything in lib, test, app, or config changes # ~> rego {lib,test,app,config} -- ruby -Itest ./test/units/foo_test.rb --name teh_test # run a specific test whenever it, or your app, has changed # ~> rego ./test -- ruby -Itest @ ```
Version data entries
11 entries across 11 versions & 1 rubygems