🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

github

Package Overview
Dependencies
Maintainers
3
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github - npm Package Compare versions

Comparing version

to
0.1.5

api/v3.0.0/oauth.js

2

api/v3.0.0/gistsTest.js

@@ -136,3 +136,3 @@ /*

"test: GET /gists/get/:id (get)": function(next) {
"test: GET /gists/:id (get)": function(next) {
var self = this;

@@ -139,0 +139,0 @@ this.client.authenticate({

/**
* class Github
*
*
* A Node.JS module, which provides an object oriented wrapper for the GitHub v3 API.
*
*
* Copyright 2012 Ajax.org Services B.V.

@@ -35,3 +35,3 @@ *

["gists", "gitdata", "issues", "orgs", "pullRequests", "repos", "user", "events"].forEach(function(api) {
["gists", "gitdata", "issues", "oauth", "orgs", "pullRequests", "repos", "user", "events", "statuses"].forEach(function(api) {
Util.extend(proto, require("./" + api));

@@ -38,0 +38,0 @@ });

@@ -182,2 +182,24 @@ /*

"test: POST /repos/:user/:repo/merges (merge)": function(next) {
var self = this;
this.client.authenticate({
type: "token",
username: username,
token: token
});
this.client.repos.merge(
{
user: "String",
repo: "String",
base: "String",
head: "String",
commit_message: "String"
},
function(err, res) {
Assert.equal(err, null);
// other assertions go here
}
);
},
"test: GET /repos/:user/:repo/contributors (getContributors)": function(next) {

@@ -184,0 +206,0 @@ var self = this;

{
"name" : "github",
"version" : "0.1.4",
"version" : "0.1.5",
"description" : "NodeJS wrapper for the GitHub API",

@@ -5,0 +5,0 @@ "author": "ajax.org B.V. <info@ajax.org>",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet