aboutsummaryrefslogtreecommitdiffstats
path: root/collector_proxy/Rakefile
blob: 16df55bd27b3c6bec6bf123d5e7558c551a585e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$:.unshift File.expand_path("../lib/", __FILE__)
require "collector_proxy"

$stdout.sync = true
$stderr.sync = true

namespace :collector_proxy do
  desc "Run collector proxy."
  task :run do
    CollectorProxy.run
  end
end