webcoyote / guard-elixir

Guard::Elixir automatically runs Elixir 'mix' tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guard::Elixir

Gem Version Build Status

Guard::Elixir is a Guard plugin that automatically runs tests for the Elixir language using "mix test".

Installation

Manual installation

gem install guard-elixir

Installation using Bundler.

Add Guard::Elixir to your Gemfile:

group :development do
  gem 'guard-elixir'
end

and install it by running Bundler:

$ bundle

Configuration

Add guard definition to your Guardfile by running the following command:

guard init elixir

Run guard to automatically run your Elixir tests

bundle exec guard start

Standard Guardfile when using Guard::Elixir

guard :elixir do
  watch(%r{^test/(.*)_test\.exs})
  watch(%r{^lib/(.+)\.ex$})           { |m| "test/#{m[1]}_test.exs" }
  watch(%r{^test/test_helper.exs$})   { "test" }
end

More information

Please read Guard usage doc

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Author

Author:: Patrick Wyatt (pat@codeofhonor.com)

About

Guard::Elixir automatically runs Elixir 'mix' tests

License:MIT License


Languages

Language:Ruby 99.8%Language:Elixir 0.2%