Skip to content

Commit

Permalink
update dependecies, cleanup cake and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dgf committed Apr 19, 2012
1 parent 3aef539 commit 1dca24c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions Cakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ build = (callback) -> call 'coffee', ['-c', '-o', 'lib', 'src'], callback

spec = (callback) -> call jasmineBinary, ['spec', '--coffee'], callback

task 'build', 'build coffee', ->
build (status) -> log ":)", green if status is 0

task 'spec', 'run specifications', ->
build (buildStatus) ->
if buildStatus is 0
spec (testStatus) ->
log ":)", green if testStatus is 0
logSuccess = (status) -> log ":)", green if status is 0

task 'build', 'build coffee', -> build logSuccess

task 'spec', 'run specifications', -> spec logSuccess
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crudl-app"
, "version": "0.0.2"
, "version": "0.0.3"
, "author": "Danny Gräf <github@dagnu.de>"

, "keywords": ["CRUD", "coffeescript"]
Expand Down Expand Up @@ -34,8 +34,8 @@
, "devDependencies": {
"jasmine-node": "1.0.x"
, "sqlite3": "2.1.x"
, "crudl-model": "0.0.x"
, "crudl-control": "0.0.x"
, "crudl-model": "0.1.x"
, "crudl-control": "0.1.x"
}

, "engines": {
Expand Down

0 comments on commit 1dca24c

Please sign in to comment.