Yet another fancy watcher. (Inspired by antr / entr)
Configure execution of different commands using semantic yaml.
```yaml
name: run my tests when: change: 'tests/' run: make test ignore: ["tests/integration/"]
name: compile my sass when: change: 'src/static/**' run: compass
name: Starwars when: change: ".watch.yaml" run: telnet towel.blinkenlights.nl ```
Create a lighter 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.
OSX:
bash
brew tap cristianoliveira/tap
brew update
brew install funzzy
Linux:
bash
curl -s https://raw.githubusercontent.com/cristianoliveira/funzzy/master/linux-install.sh | sh
With Cargo
bash
cargo install funzzy
**Make sure you have $HOME/.cargo/bin
in your PATH
export $PATH:$HOME/.cargo/bin
Make sure you have installed the follow dependecies: - Rust
Clone this repo and do:
bash
make install
Initializing with boilerplate:
bash
funzzy init
Change the yaml as you want. Then run:
bash
funzzy watch
or with some arbitrary command
bash
funzzy watch -c 'cargo build'
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
vagrant ssh -c "cd /vagrant && funzzy watch"
vagrant ssh -c "touch /vagrant/.watch.yaml" ``` It will take some time to be prepared.
Running tests:
bash
cargo test
We use clippy for lintting the funzzy's source code. Make sure you had validate it before commit.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
Pull Requests are really welcome! Others support also.
Pull Request should have unit tests
This project was made under MIT Licence.