Skip to content

Commit

Permalink
Updated mongodb version
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynos committed Feb 17, 2012
1 parent 6b7383b commit 10d0386
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/person.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Person.create({
name: "Bob",
age: 18
}, function (err, Bob) {
console.log(Bob);
console.log(err, Bob);

Person.get(Bob._id, function (err, bob) {
console.log(bob);
console.log(err, bob);
});
});
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "resourceful-mongo",
"description": "resourceful mongodb engine",
"version": "0.0.2",
"version": "0.0.3",
"author": "Ryan Fitzgerald <ryan@codebrewstudios.com>",
"repository": {
"type": "git",
"url": "git://github.com/codebrew/resourceful-mongo.git"
},
"keywords": ["mongodb", "database", "ODM"],
"dependencies": {
"mongodb": "0.9.7-2-5",
"mongodb": "0.9.9-2",
"resourceful": "git://github.com/flatiron/resourceful.git"
},
"devDependencies": {
Expand Down

0 comments on commit 10d0386

Please sign in to comment.