Added miniied jools to lib and included jools in buildjs string. Had to modify the underscore template settis to resolve conflicts in the erubis evaluator. Created are object as apart of beefjs and created basic stub to create the jools object.

This commit is contained in:
qswain2
2012-06-02 13:15:35 -04:00
parent 41e64568e8
commit 6063e6246d
2 changed files with 12 additions and 0 deletions

11
core/main/client/are.js Normal file
View File

@@ -0,0 +1,11 @@
beef.are = {
init:function(){
var Jools = require('jools');
this.ruleEngine = new Jools();
},
rules:[],
commands:[],
results:[]
};
beef.regCmp("beef.are");