Socket
Socket
Sign inDemoInstall

ember-data-github

Package Overview
Dependencies
186
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.0 to 0.1.1

.eslintrc.js

1

addon/models/github-organization.js

@@ -7,3 +7,4 @@ import DS from 'ember-data';

avatarUrl: DS.attr('string'),
githubUsers: DS.hasMany('githubUsers', { async: true }),
githubRepositories: DS.hasMany('githubRepository', { async: true })
});

3

addon/models/github-repository.js

@@ -22,3 +22,4 @@ import DS from 'ember-data';

}),
branches: DS.hasMany('githubBranch', { async: true })
branches: DS.hasMany('githubBranch', { async: true }),
pulls: DS.hasMany('githubPull', { async: true })
});

@@ -12,2 +12,3 @@ import GithubSerializer from './github';

links: {
githubUsers: hash.members_url.replace(/\{\/member\}/, ''),
githubRepositories: hash.repos_url

@@ -14,0 +15,0 @@ }

@@ -21,3 +21,4 @@ import GithubSerializer from './github';

defaultBranch: `${resourceHash.url}/branches/${resourceHash.default_branch}`,
branches: `${resourceHash.url}/branches`
branches: `${resourceHash.url}/branches`,
pulls: `${resourceHash.url}/pulls`
}

@@ -24,0 +25,0 @@ };

@@ -0,1 +1,2 @@

/*jshint node:true*/
'use strict';

@@ -2,0 +3,0 @@

The MIT License (MIT)
Copyright (c) 2015
Copyright (c) 2016 Jordan Hawker

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

{
"name": "ember-data-github",
"version": "0.1.0",
"version": "0.1.1",
"description": "Ember Data abstraction for the GitHub API",

@@ -10,4 +10,4 @@ "directories": {

"scripts": {
"build": "ember build",
"start": "ember server",
"build": "ember build",
"test": "ember try:each"

@@ -20,28 +20,25 @@ },

"author": "Jordan Hawker <hawker.jordan@gmail.com> (http://www.JordanHawker.com)",
"maintainers": [
"jimmay5469",
"Jordan Hawker <hawker.jordan@gmail.com> (http://www.JordanHawker.com)"
],
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.4.2",
"ember-ajax": "0.7.1",
"ember-cli": "2.4.3",
"ember-cli-app-version": "^1.0.0",
"ember-ajax": "^2.5.1",
"ember-cli": "2.7.0",
"ember-cli-app-version": "^2.0.0",
"ember-cli-content-security-policy": "0.5.0",
"ember-cli-dependency-checker": "^1.2.0",
"ember-cli-htmlbars": "^1.0.3",
"ember-cli-eslint": "1.7.0",
"ember-cli-htmlbars": "^1.1.0",
"ember-cli-htmlbars-inline-precompile": "^0.3.1",
"ember-cli-inject-live-reload": "^1.4.0",
"ember-cli-qunit": "^1.4.0",
"ember-cli-release": "0.2.8",
"ember-cli-qunit": "^2.2.0",
"ember-cli-release": "1.0.0-beta.2",
"ember-cli-sri": "^2.1.0",
"ember-cli-test-loader": "^1.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-data": "^2.4.2",
"ember-data": "^2.7.0",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-export-application-global": "^1.0.5",
"ember-load-initializers": "^0.5.1",
"ember-resolver": "^2.0.3",
"ember-suave": "2.0.1",
"ember-try": "0.2.2",
"loader.js": "^4.0.1"
"loader.js": "^4.0.7"
},

@@ -48,0 +45,0 @@ "keywords": [

@@ -38,3 +38,3 @@ # Ember Data Github

* `ember server`
* `ember serve`
* Visit your app at http://localhost:4200.

@@ -44,3 +44,3 @@

* `npm test`
* `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions)
* `ember test`

@@ -53,2 +53,2 @@ * `ember test --server`

For more information on using ember-cli, visit [http://www.ember-cli.com/](http://www.ember-cli.com/).
For more information on using ember-cli, visit [http://ember-cli.com/](http://ember-cli.com/).

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc