npm install rally-fetch-github-repo
JavaScript
var FetchGithubRepo, callback;
FetchGithubRepo = require("rally-fetch-github-repo");
callback = function(err) {};
FetchGithubRepo.download({
organization: 'RallyApps',
repo: "fetch-github-repo",
path: "."
}, callback);
Coffee
FetchGithubRepo = require "rally-fetch-github-repo"
callback = (err)->
FetchGithubRepo.download
organization: 'RallyApps'
repo : "fetch-github-repo",
path: "."
callback
To run the tests: npm test