-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GPII-4253: Created initial gpii stubs for non-supported OSs #1
base: master
Are you sure you want to change the base?
Changes from 2 commits
b92f28d
f975c2b
03e3157
d68c03b
a3cc3b1
036cee4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* GPII "No OS" Personalization Framework Node.js Bootstrap | ||
* | ||
* Copyright 2019 Raising the Floor -- US Inc. All rights reserved. | ||
* Copyright 2012 OCAD University | ||
* | ||
* Licensed under the New BSD license. You may not use this file except in | ||
* compliance with this License. | ||
* | ||
* You may obtain a copy of the License at | ||
* https://github.com/GPII/universal/blob/master/LICENSE.txt | ||
* | ||
* The R&D leading to these results received funding from the | ||
* Department of Education - Grant H421A150005 (GPII-APCP). However, | ||
* these results do not necessarily represent the policy of the | ||
* Department of Education, and you should not assume endorsement by the | ||
* Federal Government. | ||
* | ||
* The research leading to these results has received funding from the European Union's | ||
* Seventh Framework Programme (FP7/2007-2013) | ||
* under grant agreement no. 289016. | ||
*/ | ||
|
||
"use strict"; | ||
|
||
var fluid = require("gpii-universal"), | ||
gpii = fluid.registerNamespace("gpii"); | ||
|
||
require("./index.js"); | ||
|
||
gpii.start(); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* GPII "No OS" Personalization Framework Node.js Bootstrap | ||
* | ||
* Copyright 2019 Raising the Floor -- US Inc. All rights reserved. | ||
* Copyright 2014 Lucendo Development Ltd. | ||
* | ||
* Licensed under the New BSD license. You may not use this file except in | ||
* compliance with this License. | ||
* | ||
* You may obtain a copy of the License at | ||
* https://github.com/GPII/universal/blob/master/LICENSE.txt | ||
* | ||
* The R&D leading to these results received funding from the | ||
* Department of Education - Grant H421A150005 (GPII-APCP). However, | ||
* these results do not necessarily represent the policy of the | ||
* Department of Education, and you should not assume endorsement by the | ||
* Federal Government. | ||
* | ||
* The research leading to these results has received funding from the European Union's | ||
* Seventh Framework Programme (FP7/2007-2013) | ||
* under grant agreement no. 289016. | ||
*/ | ||
|
||
"use strict"; | ||
|
||
var fluid = require("gpii-universal"); | ||
|
||
module.exports = fluid; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "gpii-no-os", | ||
"description": "Stub definitions suitable for booting up the GPII Morphic UI implemented in gpii-app without platform-specific support", | ||
"version": "0.3.0", | ||
"author": "Raising the Floor -- US Inc.", | ||
"bugs": { | ||
"url": "http://issues.gpii.net/browse/GPII" | ||
}, | ||
"homepage": "http://gpii.net/", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"gpii-universal": "JavierJF/universal#GPII-3810" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this branch rather than master or, even better, an npm artefact? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For consistency, this is the same branch used by the Windows repository. I can change it to any other repo/package/branch, as desired. To date, I have been testing specifically with the branch used by GPII/windows. |
||
}, | ||
"os": [ | ||
"!win32" | ||
], | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"gpii" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/GPII/gpii-no-os.git" | ||
}, | ||
"main": "./gpii.js", | ||
"engines": { | ||
"node": ">=6.3.1" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make this a no-op which returns true so that we stand a chance of enlisting this in CI : P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, obviously I mean "0" rather than true : P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood. npm test will now execute "exit 0" for the stubs.