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.
*/
var XML = require('xml'),
log = require('logging').from(__filename);
var XML = require('xml');
function RSS (options, items) {
options = options || {};

View File

View File

@@ -1,12 +1,13 @@
{
"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.",
"homepage": "http://github.com/dylang/node-rss",
"author": "Dylan Greene <dylang@gmail.com>",
"contributors": [
"Dylan Greene <dylang@gmail.com>",
"Xavier Damman <xdamman@gmail.com>"
"Xavier Damman <xdamman@gmail.com>",
"Michael R. Lange"
],
"repository":
{
@@ -20,10 +21,9 @@
},
"dependencies":
{
"xml": ">= 0.0.4",
"logging": ">= 2.0.0"
"xml": ">= 0.0.4"
},
"main": "index.js",
"main": "lib/rss.js",
"engines": { "node": ">=0.4.0" },
"licenses" :
[

View File

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