Lets you configure a Guard that will run Tay whenever a change is detected in your extension's source.
Add gem guard-tay
to your Gemfile and run bundle install
You can adapt your Guardfiles like you want. Please read the Guard docs for more info about Guardfile DSL. Only two options are supported at this stage, :build_directory
(the subdirectory to build to) and :tayfile
(the name of the Tayfile you want to use). The defaults are shown below.
guard :tay, :build_directory => 'build', :tayfile => 'Tayfile' do
watch(%r{^Tayfile$})
watch(%r{^lib/.+$})
watch(%r{^src/.+$})
watch(%r{^vendor/.+$})
watch(%r{^browser_modules/.+$})
end
- 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