Guard::Erlang
Guard::Erlang automatically compile your erlang file & run Module:test() from ebin
Guard::Erlang watch your *.erl and compile whit changed.
Guard::Erlang watch your ebin/*.beam and run Module:test() whit test/0 exist.
Run all action is execute "erl -pa ebin -make"
Installation
Add this line to your application's Gemfile:
gem 'guard-erlang'
And then execute:
$ bundle
Or install it yourself as:
$ gem install guard-erlang
Usage
mkdir -p project/ebin && cd project
bundle guard init erlang
guard
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request