mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 03:56:19 +00:00
updated version, removed dependency on my logging module, removed empty util.js.
This commit is contained in:
@@ -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 || {};
|
||||
|
||||
10
package.json
10
package.json
@@ -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" :
|
||||
[
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
use nodeunit to run tests.
|
||||
*/
|
||||
|
||||
var RSS = require('../index');
|
||||
var RSS = require('../lib/rss');
|
||||
|
||||
|
||||
module.exports = {
|
||||
|
||||
Reference in New Issue
Block a user