Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mde/geddy
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Feb 3, 2012
2 parents 544bbfa + f6e0a76 commit 1cecd81
Show file tree
Hide file tree
Showing 39 changed files with 7,045 additions and 943 deletions.
1 change: 1 addition & 0 deletions lib/app.js
Expand Up @@ -42,6 +42,7 @@ geddy.RegExpRouter = RegExpRouter;
geddy.inFlight = new InFlight();
geddy.inflection = inflection;
geddy.model = model;
geddy.utils = utils;

var App = function () {
var JSPAT = /\.js$/;
Expand Down
2 changes: 2 additions & 0 deletions lib/utils/index.js
Expand Up @@ -21,6 +21,7 @@ var geddy
, uri = require('./uri').uri
, date = require('./date').date
, request = require('./request').request
, EventBuffer = require('./event_buffer').EventBuffer
, SortedCollection = require('./sorted_collection').SortedCollection;

var utils = new (function () {
Expand Down Expand Up @@ -114,6 +115,7 @@ utils.uri = uri;
utils.date = date;
utils.request = request;
utils.SortedCollection = SortedCollection;
utils.EventBuffer = EventBuffer;

module.exports = utils;

0 comments on commit 1cecd81

Please sign in to comment.