Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricemach committed Nov 24, 2010
1 parent 5242a5f commit 7abf033
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**v0.1.3** (2010-11-13):

- Updated to CoffeeScript 0.9.5 and node 0.2.5/0.3.1.
- Partials support.
- Compilation to .js file with `zappa -c`.
- Auto-restarting on changes with `zappa -w`.

**v0.1.2** (2010-11-13):

- Multiple `using`'s: `using 'foo', 'bar', 'etc'`.
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ And drink it!
$ zappa cuppa.coffee
=> App "default" listening on port 5678...

If you ever need to run it with the vanilla node command, we've got that covered:
If you're going to restart it a thousand times per minute while developing like me, just let zappa do the job for you:

$ zappa -w cuppa.coffee

And if you ever need to run it with the vanilla node command, we've got that covered:

$ zappa -c cuppa.coffee
$ node cuppa.js
Expand Down Expand Up @@ -193,7 +197,7 @@ This is the first of a series of planned features to ease client/server integrat

In order to gain automatic access to framework locals, request and message handlers lose automatic access to their parent scope. To make things available to them though, you can use `def`:

foo: 'bar'
foo = 'bar'
def ping: 'pong'
def zig: -> 'zag'

Expand Down
2 changes: 1 addition & 1 deletion lib/zappa.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,6 @@ publish_api = (from, to, methods) ->

z = new Zappa()

zappa.version = '0.1.2'
zappa.version = '0.1.3'
zappa.run = -> z.run.apply z, arguments
zappa.run_file = -> z.run_file.apply z, arguments
2 changes: 1 addition & 1 deletion lib/zappa.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"name": "zappa",
"description": "Razor-sharp DSL for modern web apps",
"version": "0.1.2",
"description": "Razor-sharp DSL for modern web apps.",
"version": "0.1.3",
"author": "Maurice Machado <maurice@bitbending.com>",
"contributors": [
{"name": "Maurice Machado", "email": "maurice@bitbending.com"}
{"name": "Maurice Machado", "email": "maurice@bitbending.com"},
{"name": "Vladimir Dronnikov", "email": "dronnikov@gmail.com"},
{"name": "Isaac Wolkerstorfer", "email": "agnoster@gmail.com"}
],
"dependencies": {
"express": "1.0.0rc4",
"coffeekup": ">= 0.2.0",
"coffee-script": ">= 0.9.4",
"socket.io": ">= 0.6.0",
"express": "1.0.0",
"coffeekup": ">= 0.2.1",
"coffee-script": ">= 0.9.5",
"socket.io": ">= 0.6.1",
"jquery": ">= 1.4.3"
},
"keywords": ["framework", "websockets", "coffeescript"],
"bin": { "zappa": "./bin/zappa.coffee" },
"directories": { "lib": "./lib" },
"engines": { "node": ">= 0.2.4" }
"engines": { "node": ">= 0.2.5" }
}

0 comments on commit 7abf033

Please sign in to comment.