travis-api/lib/travis/api/app/endpoint/stats.rb
2012-09-29 20:48:31 +02:00

16 lines
266 B
Ruby

require 'travis/api/app'
class Travis::Api::App
class Endpoint
class Stats < Endpoint
get('/repos') do
{ :stats => service(:daily_repos) }
end
get('/tests') do
{ :stats => service(:daily_tests) }
end
end
end
end