This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@id = params.id or (-> | |
throw new Error 'id must be defined!' | |
)() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deps | |
fs = require('fs') | |
express = require('express') | |
stitch = require('stitch') | |
# express server | |
app = express.createServer() | |
# configure express, /public for index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<script src="/js/app.js" type="text/javascript" charset="utf-8"></script> | |
<script type="text/javascript" charset="utf-8"> | |
var app = require('App').init(); | |
app.speak('!'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
@object App | |
Main Application File | |
### | |
# Bind jQuery | |
$ = jQuery | |
# App just initializes this class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
@class MyProject | |
@description Main Application | |
### | |
# Dependencies | |
BaseProject = require './BaseProject' | |
# MyProject Class, returned in embed | |
class MyProject extends BaseProject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
@class ErrorHandler | |
@description Error Delegation | |
### | |
class ErrorHandler | |
constructor: (@name) -> | |
console.log? @name or 'ErrorHandler' | |
window.onerror = (msg, url, line) -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
@class BaseProject | |
@description Base Project Class | |
### | |
# Dependencies | |
ErrorHandler = require './ErrorHandler' | |
# BaseProject Class | |
class BaseProject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gist.github.com/2989407 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
restart = -> | |
child = exec('coffee server.coffee', (_error, _stdout, _stderr) -> | |
if _error | |
throw new Error(_error) | |
else | |
console.log '> server.coffee restarted successfully!' | |
) | |
# end | |
# end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @application | |
* @file /app/helpers/models.js | |
**/ | |
Spine.Model.extend({ | |
toJSON: function(){ | |
var attributes = this.attributes(); | |
attributes['id'] = attributes['_id']; | |
return attributes; |