Files
growstuff/lib/tasks/watchr.rake
Miles Gould 387d68185d Wrap dev/test Rake tasks in error recovery
Rake was dying due to missing gems in production.
2012-09-24 21:05:20 +01:00

8 lines
110 B
Ruby

begin
desc "Run watchr"
task :watchr do
sh %{bundle exec watchr .watchr}
end
rescue LoadError
end