Project

guard-flay

0.0
No commit activity in last 3 years
No release in over 3 years
Guard::Flay automatically run flay.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

~> 2.5.0
~> 0.0.3
>= 1.8
 Project Readme

Guard::Flay Dependency Status Code Climate

Flay guard flays every file on change.

  • Compatible with Bundler 1.0.x

Install

Please be sure to have Guard installed before continue.

Add it to your Gemfile (inside development group):

group :development do
  gem 'guard-flay'
end

Add guard definition to your Guardfile by running this command:

$ guard init flay

Usage

Please read Guard usage doc

Guardfile

guard :flay do
  watch(%r{^lib/(.+)\.rb$})

  # Rails example
  watch(%r{^app/(.+)\.rb$})
  watch(%r{^app/(.*)(\.erb|\.haml)$})
  watch('config/routes.rb')
end

Please read Guard doc for more information about the Guardfile DSL.

TODO

  • Tests
  • Notifications
  • Guard params

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

Authors

PĂ©ricles Dias