diff options
Diffstat (limited to 'lib/tasks')
| -rw-r--r-- | lib/tasks/agent.rake | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/tasks/agent.rake b/lib/tasks/agent.rake index 9fe156e..d00de1d 100644 --- a/lib/tasks/agent.rake +++ b/lib/tasks/agent.rake @@ -1,8 +1,15 @@ namespace :agent do + require 'fake_agent' + desc "watch all files" task watch: :environment do - require 'fake_agent' agent = FakeAgent.new(Agent.first.id, 'http://localhost:3000') - agent.run(Dir.pwd) + agent.watch(Dir.pwd) + end + + desc "scan directory" + task scan: :environment do + agent = FakeAgent.new(Agent.first.id, 'http://localhost:3000') + agent.scan(Dir.pwd) end end |
