Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
Renamed pie -> bread.
Browse files Browse the repository at this point in the history
I renamed pie to bread because there's already another package called
[NodePie](https://github.com/andris9/NodePie).
  • Loading branch information
pvorb committed Aug 28, 2011
1 parent 46a7d63 commit 97a3c37
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.mkd
@@ -1,2 +1,2 @@
**bake-blog** is a simple blogging engine for node that uses bake, mongodb and
**bread** is a simple blogging engine for node that uses bake, mongodb and
markdown.
6 changes: 3 additions & 3 deletions pie.js → bread.js
Expand Up @@ -4,7 +4,7 @@ var bake = require("bake"),
marked = require("marked");

// Main function
var pie = function(conf) {
var bread = function(conf) {

// later holds a reference to the Index object
var index;
Expand Down Expand Up @@ -34,9 +34,9 @@ var pie = function(conf) {
// save ref to index
index = i;

// Bake the pie
// bake the bread
bake(conf, hooks);
});
};

module.exports = pie;
module.exports = bread;
8 changes: 4 additions & 4 deletions package.json
@@ -1,16 +1,16 @@
{
"author": "Paul Vorbach <paul@vorb.de> (http://vorb.de)",
"name": "pie",
"name": "bread",
"description": "simple blogging engine that uses bake, mongodb and markdown",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/pvorb/node-pie.git"
"url": "git://github.com/pvorb/node-bread.git"
},
"bugs": {
"web": "https://github.com/pvorb/node-pie/issues"
"web": "https://github.com/pvorb/node-bread/issues"
},
"main": "pie.js",
"main": "bread.js",
"engines": {
"node": ">=0.4.0"
},
Expand Down
4 changes: 2 additions & 2 deletions test/test.js
@@ -1,4 +1,4 @@
var pie = require("../");
var bread = require("../");

var conf = {
dbinf: {
Expand Down Expand Up @@ -43,4 +43,4 @@ var conf = {
}
};

pie(conf);
bread(conf);

0 comments on commit 97a3c37

Please sign in to comment.