Skip to content

Commit

Permalink
Added: setting views dir to __dirname + '/views' by default. Closes z…
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-carvalho committed Sep 5, 2011
1 parent 0280afa commit 9dbe239
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 22 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -11,6 +11,8 @@
- Changed `zappa.run` to interpret a number-castable string param as the port, to better integrate with Heroku. Closes #61 [Tim Shadel]

- Fixed #64: require does not pick up node_modules in app dir. [Jason King]

- Added: setting views dir to `__dirname + '/views'` by default. Closes #71. [rachel-carvalho]

**v0.2.0beta** (2011-08-02):

Expand Down
4 changes: 2 additions & 2 deletions Cakefile
Expand Up @@ -5,7 +5,7 @@ task 'build', ->
run 'coffee -o lib -c src/*.coffee'

task 'test', ->
run 'cd tests && coffee index.coffee'
run 'coffee tests/index.coffee'

task 'bench', ->
run 'cd benchmarks && ./run'
Expand All @@ -27,4 +27,4 @@ run = (args...) ->
cmd.stdout.on 'data', (data) -> process.stdout.write data
cmd.stderr.on 'data', (data) -> process.stderr.write data
process.on 'SIGHUP', -> cmd.kill()
cmd.on 'exit', (code) -> callback() if callback? and code is 0
cmd.on 'exit', (code) -> callback() if callback? and code is 0

0 comments on commit 9dbe239

Please sign in to comment.