JSDOC/ScopeNamer.js
[app.jsdoc] / examples / test_file.js
1 /**
2  * Test on a single file..
3  *
4  */
5
6 // this files nice and simple
7 // run this from the top level at present...
8 var ar = __script_path__.split('/');
9 ar.pop();
10 imports.searchPath.unshift(ar.join('/'));
11 BuildDocs = imports.JSDOC.BuildDocs.BuildDocs;
12
13
14 new BuildDocs({
15     baseDir: ar.join('/') ,
16     target : '/tmp/docs_test',
17     
18     //cacheDirectory : '/tmp/app.jsdoc.test.cache/',
19     //src : [ "File.js" ],
20     //src : [ "JSDOC/BuildDocs.js" ],
21     src : [ "XObject.js" ],
22     excludeSrc : [ ],
23             
24     templateDir : "examples/jsdoc_templates"
25                 
26     
27     
28 });
29