diff --git a/.gitmodules b/.gitmodules index f95922f..76e88cd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,7 +2,7 @@ path = node_modules/socket.io url = http://github.com/LearnBoost/Socket.IO.git [submodule "test/lib/node-websocket-client"] - path = tnode_modules/node-websocket-client + path = node_modules/node-websocket-client url = http://github.com/pgriess/node-websocket-client.git [submodule "node_modules/v8cgi"] path = node_modules/v8cgi @@ -16,3 +16,9 @@ [submodule "node_modules/underscore"] path = node_modules/underscore url = https://github.com/documentcloud/underscore.git +[submodule "node_modules/node-linter"] + path = node_modules/node-linter + url = https://github.com/kof/node-linter.git +[submodule "node_modules/node-jake"] + path = node_modules/node-jake + url = git://github.com/mde/node-jake.git diff --git a/Jakefile.js b/Jakefile.js new file mode 100644 index 0000000..2ae9d66 --- /dev/null +++ b/Jakefile.js @@ -0,0 +1,18 @@ +desc("This is the default task."); +task("default", [], function () { + console.log("This is the default task."); + console.log(require("util").inspect(arguments)); +}); + +desc("A task for running node-linter on the app directory of the project"); +task("linter", [], function() { + var linter = require("node-linter"); + + linter.run({ files: "./app" + , config: "./node_modules/node-linter/conf/server.json" + , confRoot: "./node_modules/node-linter/conf" + , recursive: true + , format: true + , callback: function(errors) { console.log(errors); } + }); +}); diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6383e86 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2011 Sonny Michaud, http://www.gourdian.com + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e6318b --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +Gourdian += + +The simplest way to incorporate websockets into traditional web applications. + +Starting a Project +- + +Running a Server +- + +Routes +- + +Tests +- + +MVC +- + +gourdian Object +- diff --git a/node_modules/node-jake b/node_modules/node-jake new file mode 160000 index 0000000..f5025ee --- /dev/null +++ b/node_modules/node-jake @@ -0,0 +1 @@ +Subproject commit f5025eeea529c278afdeac3c324c9aa6d00abe6a diff --git a/node_modules/node-linter b/node_modules/node-linter new file mode 160000 index 0000000..e01fa30 --- /dev/null +++ b/node_modules/node-linter @@ -0,0 +1 @@ +Subproject commit e01fa3051bd746dfd0bcebdca01501745af3de8a diff --git a/node_modules/socket.io b/node_modules/socket.io index 5308452..ec02373 160000 --- a/node_modules/socket.io +++ b/node_modules/socket.io @@ -1 +1 @@ -Subproject commit 5308452b8a1564c3f95d0f1b569a9ccb70e12dbc +Subproject commit ec023737a4d54df1fe6e6f198cd87ed8677b6676 diff --git a/script/about b/script/about new file mode 100644 index 0000000..e69de29 diff --git a/script/generate b/script/generate new file mode 100644 index 0000000..e69de29