Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
vietnogi committed Aug 19, 2015
1 parent cdd8d45 commit 428c1da
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 24 deletions.
34 changes: 20 additions & 14 deletions dist/example.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
window.FIXTURES = {
"swagger/v2-oauth.json": {
"bower_components/appirio-tech-api-schemas/swagger/v2-oauth.json": {
"swagger": "2.0",
"host": "topcoder.auth0.com",
"basePath": "",
Expand Down Expand Up @@ -162,7 +162,7 @@ window.FIXTURES = {
}
}
},
"swagger/v2.json": {
"bower_components/appirio-tech-api-schemas/swagger/v2.json": {
"swagger": "2.0",
"info": {
"description": "Move your app forward with the Uber API",
Expand Down Expand Up @@ -226,7 +226,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-authorizations.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-authorizations.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -364,7 +364,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-events.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-events.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -619,7 +619,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-messages.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-messages.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -806,7 +806,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-threads.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-threads.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -990,6 +990,12 @@ window.FIXTURES = {
"status": {
"type": "integer",
"sample": 200
},
"content": {
"type": "object",
"items": {
"$ref": "#/definitions/ThreadContent"
}
}
}
},
Expand Down Expand Up @@ -1073,7 +1079,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-users.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-users.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -1223,7 +1229,7 @@ window.FIXTURES = {
}
}
},
"swagger/v3-work.json": {
"bower_components/appirio-tech-api-schemas/swagger/v3-work.json": {
"swagger": "2.0",
"info": {
"description": "",
Expand Down Expand Up @@ -1335,7 +1341,7 @@ window.FIXTURES = {
}
}
},
"apiary/apcopilotservice.json": {
"bower_components/appirio-tech-api-schemas/apiary/apcopilotservice.json": {
"ast": {
"_version": "3.0",
"metadata": [
Expand Down Expand Up @@ -2267,7 +2273,7 @@ window.FIXTURES = {
"warnings": [],
"sourcemap": null
},
"apiary/apworkmicroservice.json": {
"bower_components/appirio-tech-api-schemas/apiary/apworkmicroservice.json": {
"ast": {
"_version": "3.0",
"metadata": [
Expand Down Expand Up @@ -5213,7 +5219,7 @@ window.FIXTURES = {
"warnings": [],
"sourcemap": null
},
"apiary/messaging14.json": {
"bower_components/appirio-tech-api-schemas/apiary/messaging14.json": {
"ast": {
"_version": "3.0",
"metadata": [
Expand Down Expand Up @@ -5906,7 +5912,7 @@ window.FIXTURES = {
"warnings": [],
"sourcemap": null
},
"apiary/submissiondraft.json": {
"bower_components/appirio-tech-api-schemas/apiary/submissiondraft.json": {
"ast": {
"_version": "3.0",
"metadata": [
Expand Down Expand Up @@ -13023,7 +13029,7 @@ if (typeof sinon == "undefined") {
ref = window.FIXTURES;
for (key in ref) {
fixture = ref[key];
if (key !== 'apiary/messaging14.json') {
if (key !== 'bower_components/appirio-tech-api-schemas/apiary/messaging14.json') {
fixtures.push(fixture);
}
}
Expand Down Expand Up @@ -13057,7 +13063,7 @@ angular.module("app.constants", [])
'use strict';
var dependencies;

dependencies = ['ui.router', 'ngResource', 'app.constants', 'appirio-tech-ng-api'];
dependencies = ['ui.router', 'ngResource', 'app.constants', 'appirio-tech-ng-api-services'];

angular.module('example', dependencies);

Expand Down
20 changes: 10 additions & 10 deletions dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

dependencies = ['ui.router', 'ngResource', 'app.constants'];

angular.module('appirio-tech-ng-api', dependencies);
angular.module('appirio-tech-ng-api-services', dependencies);

}).call(this);

Expand Down Expand Up @@ -39,7 +39,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('UserV3APIService', srv);
angular.module('appirio-tech-ng-api-services').factory('UserV3APIService', srv);

}).call(this);

Expand All @@ -58,7 +58,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('AuthorizationsAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('AuthorizationsAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -95,7 +95,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('FinalFixesAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('FinalFixesAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -125,7 +125,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('MessagesAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('MessagesAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -163,7 +163,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('SubmissionAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('SubmissionAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -213,7 +213,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('SubmissionDetailAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('SubmissionDetailAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -251,7 +251,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('ThreadsAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('ThreadsAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -288,7 +288,7 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('TimelineAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('TimelineAPIService', srv);

}).call(this);

Expand Down Expand Up @@ -318,6 +318,6 @@

srv.$inject = ['$resource', 'API_URL'];

angular.module('appirio-tech-ng-api').factory('WorkAPIService', srv);
angular.module('appirio-tech-ng-api-services').factory('WorkAPIService', srv);

}).call(this);

0 comments on commit 428c1da

Please sign in to comment.