Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsubrian committed Aug 28, 2012
0 parents commit 7dbb0f8
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
@@ -0,0 +1,15 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

node_modules
npm-debug.log
5 changes: 5 additions & 0 deletions Makefile
@@ -0,0 +1,5 @@
test:
@./node_modules/.bin/mocha \
--reporter spec

.PHONY: test
35 changes: 35 additions & 0 deletions README.md
@@ -0,0 +1,35 @@
node-views
==========

Views registry and rendering for node.js.


Developed by [Terra Eclipse](http://www.terraeclipse.com)
--------------------------------------------------------
Terra Eclipse, Inc. is a nationally recognized political technology and
strategy firm located in Aptos, CA and Washington, D.C.

[http://www.terraeclipse.com](http://www.terraeclipse.com)


License: MIT
------------
Copyright (C) 2012 Terra Eclipse, Inc.

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 package.json
@@ -0,0 +1,22 @@
{
"name": "views",
"version": "0.0.0",
"description": "Views registry and rendering",
"main": "views.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/cpsubrian/views.git"
},
"dependencies": {},
"devDependencies": {
"mocha": "~1.4.0"
},
"keywords": [
"views", "templates", "render", "partials"
],
"author": "Brian Link",
"license": "MIT"
}
Empty file added test/basic.js
Empty file.
Empty file added views.js
Empty file.

0 comments on commit 7dbb0f8

Please sign in to comment.