1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

Merge JSON properties onto sheet.

This commit is contained in:
devlinjd 2015-09-16 19:32:42 -04:00
parent efd6206462
commit ed3fc12806
2 changed files with 8 additions and 5 deletions

View File

@ -61,7 +61,7 @@ module.exports = function () {
var finished = targets.map( gen );
return {
sheet: rez.rep,
sheet: rez,//.rep,
targets: targets,
processed: finished
};

View File

@ -6,6 +6,7 @@ Abstract character/resume sheet representation.
(function() {
var FS = require('fs');
var extend = require('./extend');
function Sheet() {
this.id = null;
@ -15,9 +16,11 @@ Abstract character/resume sheet representation.
}
Sheet.prototype.open = function( file, title ) {
this.rep = JSON.parse( FS.readFileSync( file, 'utf8' ) );
var rep = JSON.parse( FS.readFileSync( file, 'utf8' ) );
extend( true, this, rep );
console.log( this );
this.fileName = file;
this.title = title || this.rep.basics.name;
this.title = title || this.basics.name;
return this;
};