Popularity
3.9
Growing
Activity
8.2
-
220
4
11

Programming language: Rust
License: MIT License
Latest version: v0.3.3

funzzy alternatives and similar packages

Based on the "Virtualization" category.
Alternatively, view funzzy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of funzzy or a related project?

Add another 'Virtualization' Package

README

funzzy Build Status Crate version

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

Configure execution of different commands using semantic 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.

- name: run my tests
  run: make test
  change: 'tests/**'
  ignore: 'tests/integration/**'

- name: fast compile sass
  run: compass compile src/static/some.scss
  change: ['src/static/**', 'src/assets/*']

- name: Starwars
  run: telnet towel.blinkenlights.nl
  change: '.watch.yaml'

- name: say hello
  run: say hello
  change: '.watch.yaml'
  run_on_init: true

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

  • OSX:

    brew tap cristianoliveira/tap
    brew update
    brew install funzzy
    
  • Linux:

    curl -s https://raw.githubusercontent.com/cristianoliveira/funzzy/master/linux-install.sh | sh
    
  • With Cargo

    cargo install funzzy
    

    *Make sure you have $HOME/.cargo/bin in your PATH export $PATH:$HOME/.cargo/bin

From source

Make sure you have installed the follow dependecies:

  • Rust

Clone this repo and do:

make install

Running

Initializing with boilerplate:

funzzy init

Change the yaml as you want. Then run:

funzzy watch

Run with some arbitrary command and stdin

find . -R '**.rs' | funzzy 'cargo build'

Run some arbitrary command in an interval of seconds

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.

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:

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

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request

Pull Requests are really welcome! Others support also.

Pull Request should have unit tests

License

This project was made under MIT License.


*Note that all licence references and agreements mentioned in the funzzy README section above are relevant to that project's source code only.