travis-api/lib/travis/api/app/endpoint/stats.rb
2012-10-02 19:10:29 +02:00

16 lines
264 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