blob: a7089f11261e394a7aba87ba642ba34707ae661f (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace :interlock do
desc "Watch the Rails log for Interlock-specific messages"
task :tail do
Dir.chdir RAILS_ROOT do
exec("tail -f log/#{RAILS_ENV}.log | grep interlock")
end
end
end
|