Skip to content

Commit

Permalink
began working on adding scripts and readme; added node-jake and node-…
Browse files Browse the repository at this point in the history
…linter; added MIT license
  • Loading branch information
sonnym committed Apr 10, 2011
1 parent 699863e commit d4e1ed4
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .gitmodules
Expand Up @@ -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
Expand All @@ -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
18 changes: 18 additions & 0 deletions 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); }
});
});
20 changes: 20 additions & 0 deletions 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.
22 changes: 22 additions & 0 deletions 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
-
1 change: 1 addition & 0 deletions node_modules/node-jake
Submodule node-jake added at f5025e
1 change: 1 addition & 0 deletions node_modules/node-linter
Submodule node-linter added at e01fa3
2 changes: 1 addition & 1 deletion node_modules/socket.io
Empty file added script/about
Empty file.
Empty file added script/generate
Empty file.

0 comments on commit d4e1ed4

Please sign in to comment.