Skip to content

Commit

Permalink
v0.0.8 Slightly better method of using the repositories.
Browse files Browse the repository at this point in the history
This way you can easily specify an arbitrary repository.
  • Loading branch information
EdJ committed Jul 22, 2013
1 parent 21a7782 commit 6394e7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tachi",
"description": "Node.js MVC framework for seriously rapid application development.",
"version": "0.0.7",
"version": "0.0.8",
"author": {
"name": "Ed J",
"email": "ed@ed-j.co.uk"
Expand Down
2 changes: 1 addition & 1 deletion setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function (settings) {
return logger;
})();

Repository = require(settings.repository || 'tachi/Repositories/jsonRepository')(settings.connectionDetails);
Repository = settings.repository || require('tachi/Repositories/jsonRepository')(settings.connectionDetails);
AppRoot = settings.appRoot || __dirname + '/../../';

Deferred = require('tachi/Async/deferred');
Expand Down

0 comments on commit 6394e7a

Please sign in to comment.