updated version, removed dependency on my logging module, removed empty util.js.

This commit is contained in:
Dylan Greene
2012-08-17 16:01:24 -04:00
parent 9aa5264b8f
commit 52011922b6
5 changed files with 7 additions and 9 deletions

View File

@@ -1 +0,0 @@
module.exports = require('./lib/rss.js');

View File

@@ -2,8 +2,7 @@
Documentation coming soon. Documentation coming soon.
*/ */
var XML = require('xml'), var XML = require('xml');
log = require('logging').from(__filename);
function RSS (options, items) { function RSS (options, items) {
options = options || {}; options = options || {};

View File

View File

@@ -1,12 +1,13 @@
{ {
"name": "rss", "name": "rss",
"version": "0.0.3", "version": "0.0.4",
"description": "RSS feed generator. A really simple API to add RSS feeds to any project.", "description": "RSS feed generator. A really simple API to add RSS feeds to any project.",
"homepage": "http://github.com/dylang/node-rss", "homepage": "http://github.com/dylang/node-rss",
"author": "Dylan Greene <dylang@gmail.com>", "author": "Dylan Greene <dylang@gmail.com>",
"contributors": [ "contributors": [
"Dylan Greene <dylang@gmail.com>", "Dylan Greene <dylang@gmail.com>",
"Xavier Damman <xdamman@gmail.com>" "Xavier Damman <xdamman@gmail.com>",
"Michael R. Lange"
], ],
"repository": "repository":
{ {
@@ -20,10 +21,9 @@
}, },
"dependencies": "dependencies":
{ {
"xml": ">= 0.0.4", "xml": ">= 0.0.4"
"logging": ">= 2.0.0"
}, },
"main": "index.js", "main": "lib/rss.js",
"engines": { "node": ">=0.4.0" }, "engines": { "node": ">=0.4.0" },
"licenses" : "licenses" :
[ [

View File

@@ -2,7 +2,7 @@
use nodeunit to run tests. use nodeunit to run tests.
*/ */
var RSS = require('../index'); var RSS = require('../lib/rss');
module.exports = { module.exports = {