funzzy Build Status Crate version

Yet another fancy watcher. (Inspired by antr / entr)

Configure execution of different commands using semantic yaml.

```yaml

.watch.yaml

list here all the events and the commands that it should execute

TIP: include '.watch.yaml' in your .git/info/exclude to ignore it.

Motivation

Create a lightweight watcher to run my tests everytime something in my project change. So I won't forget to keep my tests passing. Funzzy was made with Rust that is why it consumes almost nothing to run.

Installing

From source

Make sure you have installed the follow dependecies: - Rust

Clone this repo and do: bash make install

Running

Initializing with boilerplate: bash funzzy init Change the yaml as you want. Then run: bash funzzy watch

Run with some arbitrary command and stdin bash find . -R '**.rs' | funzzy 'cargo build'

Run some arbitrary command in an interval of seconds bash funzzy run 'cargo build' 10

Playground

It does not work between vm and host machine

If you wanna try without installing it in your machine, try the playground vagrant. ```bash cd funzzy vagrant up

Testing

vagrant ssh -c "cd /vagrant && funzzy watch"

Another shell

vagrant ssh -c "touch /vagrant/.watch.yaml" ``` It will take some time to be prepared.

Tests

Running tests: bash cargo test or simple make tests

Code Style

We use clippy for lintting the funzzy's source code. Make sure you had validate it before commit.

Contributing

Pull Requests are really welcome! Others support also.

Pull Request should have unit tests

License

This project was made under MIT License.