Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 683 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 683 Bytes

Install

Build Status

npm install rally-fetch-github-repo

API

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

Run Tests

To run the tests: npm test