Skip to content

Commit

Permalink
small CS fix for router.toString when router is empty, patch bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kieran committed Aug 13, 2013
1 parent 0665388 commit 2c0b85d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/router.coffee
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ class Router
# renders a textual description of the router for inpection # renders a textual description of the router for inpection
# #
toString: -> toString: ->
@routes.map ((rt)-> @routes.map( (rt)->
rt.toString() rt.toString()
).join '\n' ).join '\n'


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
{ {
"name": "barista", "name": "barista",
"description": "URL router & generator, similar to Rails / merb", "description": "URL router & generator, similar to Rails / merb",
"version": "0.1.0", "version": "0.1.1",
"homepage": "http://kieran.github.io/barista/", "homepage": "http://kieran.github.io/barista/",
"bugs": { "bugs": {
"url": "https://github.com/kieran/barista/issues" "url": "https://github.com/kieran/barista/issues"
Expand Down

0 comments on commit 2c0b85d

Please sign in to comment.