guard-rake
guard-rake copied to clipboard
guard-rake runs a rake task when files change
Hi, I noticed that the last release on rubygems is quite old and has no license specified. This is fixed in the master branch. Could you publish a new release?
I'm trying to draw routes as soon as routes.rb changes. My Guardfile: ```rb guard :rake, task: :routes, run_on_start: true, run_on_all: false do watch('config/routes.rb') end ``` The problem is that when...
See #43 Given a guard config like this: ``` guard 'rake', task: 'load', run_on_start: false do watch(%r{.+}) end ``` Before the behavior was: * First change of watched file, task...
First change, rake task is run once Second change of the same file, rake task is run twice (interleaved) Third change of the same file, rake task is run thrice...
I'm using https://github.com/redealumni/i18n_yaml_sorter The gem has a rake task that is ran by `rake i18n:sort`, which works fine running manually Guardfile ``` guard 'rake', task: 'i18n:sort' do watch(%r{^config/locales/.+\.yml}) end ```...
These instructions solved my issue, but I'm not sure if this is the best way to address the core issue. Guard::Rake could alternatively detect changes to the Rakefile and (optionally?)...
Hi Scott, I started to enhance the gem's behaviour, only to see, that it's completely untested. This pull request sets the ground to add more (already working on it). Thanks...
rake spec, script/server etc error out with versions 0.0.8 and 0.0.9: ``` rake aborted! /home/ianh/.rbenv/versions/1.8.7-p374/lib/ruby/gems/1.8/gems/guard-rake-0.0.8/lib/guard/rake.rb:56: syntax error, unexpected tIDENTIFIER, expecting tAMPER ::Rake::Task[@task].invoke(*@options[:task_args], paths) ^ .../rails2.3.18app/config/boot.rb:123:in `load_gems' .../rails2.3.18app/config/environment.rb:46 Tasks: TOP =>...
Im not sure if this has to do with Guard:Rake or the way the FTP client writes the file, but: Im running Guard:Rake on Mavericks watching a folder and all...
What currently happens when multiple files are changed at approximately the same time - multiple `rake` executions are triggered. This is getting quite annoying and actually problematic if the build...