From ca78fbab791abcbac1b4c479cdc616d7da7b28e6 Mon Sep 17 00:00:00 2001 From: geemus Date: Fri, 4 Nov 2011 10:30:39 -0500 Subject: [PATCH] [core] update stats raketask to point to org --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 6b219c3e2..cdd5dc98e 100644 --- a/Rakefile +++ b/Rakefile @@ -203,9 +203,9 @@ task :changelog do changelog << '' require 'multi_json' - github_repo_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/geemus/fog').body) + github_repo_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/fog/fog').body) data = github_repo_data['repository'].reject {|key, value| !['forks', 'open_issues', 'watchers'].include?(key)} - github_collaborator_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/geemus/fog/collaborators').body) + github_collaborator_data = MultiJson.decode(Excon.get('http://github.com/api/v2/json/repos/show/fog/fog/collaborators').body) data['collaborators'] = github_collaborator_data['collaborators'].length rubygems_data = MultiJson.decode(Excon.get('https://rubygems.org/api/v1/gems/fog.json').body) data['downloads'] = rubygems_data['downloads']