summaryrefslogtreecommitdiff
path: root/lib/tasks/agent.rake
blob: 9fe156ec1918ba79360484452287cbc778228c9f (plain)
1
2
3
4
5
6
7
8
namespace :agent do
  desc "watch all files"
  task watch: :environment do
    require 'fake_agent'
    agent = FakeAgent.new(Agent.first.id, 'http://localhost:3000')
    agent.run(Dir.pwd)
  end
end