Project

guard-tay

0.0
No commit activity in last 3 years
No release in over 3 years
Guard::Tay automatically recompiles your tay-based extensions on change
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 1.6
~> 0.1.0
 Project Readme

Guard::Tay

Lets you configure a Guard that will run Tay whenever a change is detected in your extension's source.

Installation

Add gem guard-tay to your Gemfile and run bundle install

Guardfile

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

Contributing

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