├── MIT-LICENSE.txt ├── README.md ├── naked.js ├── nobleModules.js ├── nobleModulesInIE.js └── test ├── circularDependencies.js ├── debugModule.js ├── demos ├── area.js ├── circles.js ├── circular │ ├── circular1.js │ ├── circular2.js │ ├── circular3.js │ ├── circularA.js │ ├── circularAndNonextantA.js │ ├── circularAndNonextantB.js │ └── circularB.js ├── diamond │ ├── bottom.js │ ├── side1.js │ ├── side2.js │ └── top.js ├── math.js ├── perimeter.js └── squares.js ├── extraModuleEnvironment.js ├── lib ├── helpers.js ├── jquery-1.6.2.js ├── qunit.css └── qunit.js ├── moduleNamespace.js ├── moduleProviderPlugIns.js ├── pitOfSuccess.js ├── recursiveProvision.js ├── requireNamespace.js └── runner.htm /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/README.md -------------------------------------------------------------------------------- /naked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/naked.js -------------------------------------------------------------------------------- /nobleModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/nobleModules.js -------------------------------------------------------------------------------- /nobleModulesInIE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/nobleModulesInIE.js -------------------------------------------------------------------------------- /test/circularDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/circularDependencies.js -------------------------------------------------------------------------------- /test/debugModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/debugModule.js -------------------------------------------------------------------------------- /test/demos/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/area.js -------------------------------------------------------------------------------- /test/demos/circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circles.js -------------------------------------------------------------------------------- /test/demos/circular/circular1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circular1.js -------------------------------------------------------------------------------- /test/demos/circular/circular2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circular2.js -------------------------------------------------------------------------------- /test/demos/circular/circular3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circular3.js -------------------------------------------------------------------------------- /test/demos/circular/circularA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circularA.js -------------------------------------------------------------------------------- /test/demos/circular/circularAndNonextantA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circularAndNonextantA.js -------------------------------------------------------------------------------- /test/demos/circular/circularAndNonextantB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circularAndNonextantB.js -------------------------------------------------------------------------------- /test/demos/circular/circularB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/circular/circularB.js -------------------------------------------------------------------------------- /test/demos/diamond/bottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/diamond/bottom.js -------------------------------------------------------------------------------- /test/demos/diamond/side1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/diamond/side1.js -------------------------------------------------------------------------------- /test/demos/diamond/side2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/diamond/side2.js -------------------------------------------------------------------------------- /test/demos/diamond/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/diamond/top.js -------------------------------------------------------------------------------- /test/demos/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/math.js -------------------------------------------------------------------------------- /test/demos/perimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/perimeter.js -------------------------------------------------------------------------------- /test/demos/squares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/demos/squares.js -------------------------------------------------------------------------------- /test/extraModuleEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/extraModuleEnvironment.js -------------------------------------------------------------------------------- /test/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/lib/helpers.js -------------------------------------------------------------------------------- /test/lib/jquery-1.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/lib/jquery-1.6.2.js -------------------------------------------------------------------------------- /test/lib/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/lib/qunit.css -------------------------------------------------------------------------------- /test/lib/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/lib/qunit.js -------------------------------------------------------------------------------- /test/moduleNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/moduleNamespace.js -------------------------------------------------------------------------------- /test/moduleProviderPlugIns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/moduleProviderPlugIns.js -------------------------------------------------------------------------------- /test/pitOfSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/pitOfSuccess.js -------------------------------------------------------------------------------- /test/recursiveProvision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/recursiveProvision.js -------------------------------------------------------------------------------- /test/requireNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/requireNamespace.js -------------------------------------------------------------------------------- /test/runner.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzuJS/Noble-Modules/HEAD/test/runner.htm --------------------------------------------------------------------------------