Skip to content

Commit 6f21402

Browse files
author
Patrick Schless
committed
remove dependency on coffeescript
1 parent 42c806f commit 6f21402

File tree

3 files changed

+122
-5
lines changed

3 files changed

+122
-5
lines changed

package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33
, "description": "A library for querying and manipulating a Round Robin Database"
44
, "keywords": ["rrd", "round robin", "database"]
55
, "author": "Patrick Schless <npm@bitesback.com> (http://www.plainlystated.com)"
6-
, "version": "1.0.0"
6+
, "version": "1.0.1"
77
, "main": "./rrd.coffee"
8-
, "files": ["rrd.coffee", "rrdRecord.coffee", "test"]
9-
, "dependencies": {
10-
"coffee-script": ">= 1.1.1"
11-
}
8+
, "files": ["rrd.js", "rrd.coffee", "rrdRecord.js", "rrdRecord.coffee", "test"]
129
, "repository" : {
1310
"type" : "git"
1411
, "url" : "https://github.com/plainlystated/coffeescript-rrd"

rrd.js

Lines changed: 109 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rrdRecord.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
(function() {
2+
var RRDRecord;
3+
RRDRecord = (function() {
4+
function RRDRecord(timestamp, fieldNames) {
5+
this.timestamp = timestamp;
6+
this.fieldNames = fieldNames;
7+
}
8+
return RRDRecord;
9+
})();
10+
exports.RRDRecord = RRDRecord;
11+
}).call(this);

0 commit comments

Comments
 (0)