Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2013-11-09 14:28:17 +0400
committerFeross Aboukhadijeh <feross@feross.org>2013-11-09 14:28:17 +0400
commit0049bb6ed0e852ecfcb1b372bc2f7afad41e7cda (patch)
tree2a69ab884d514ed827dd6120583eb64f3f2bb8da
parent3eec4902377e5664e567d0e085f80890c2624171 (diff)
travis-ci
-rw-r--r--.travis.yml6
-rw-r--r--README.md3
-rw-r--r--package.json4
-rw-r--r--test/basic.js6
4 files changed, 16 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..ec43125
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,6 @@
+language: node_js
+node_js:
+ - "0.11"
+ - "0.10"
+ - "0.8"
+ - "0.6" \ No newline at end of file
diff --git a/README.md b/README.md
index ab23cc2..d771764 100644
--- a/README.md
+++ b/README.md
@@ -3,9 +3,10 @@ WebTorrent - BitTorrent over WebRTC
A streaming torrent client in your browser, powered by webRTC and black magic.
+[![Build Status](https://travis-ci.org/feross/webtorrent.png?branch=master)](https://travis-ci.org/feross/webtorrent)
[![Dependency Status](https://david-dm.org/feross/webtorrent.png)](https://david-dm.org/feross/webtorrent)
-> Warning: This is pre-alpha software. Nothing works yet. **Watch/star this repo to follow along with progress.**
+> Warning: This is pre-alpha software. Nothing works yet. **Watch/star to follow along with progress.**
![Magic](https://raw.github.com/feross/webtorrent/master/img/logo.png)
diff --git a/package.json b/package.json
index dd29294..9a38b4e 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "webtorrent",
"version": "0.1.0",
- "description": "A streaming torrent client in your browser, powered by webRTC data channels (no install)",
+ "description": "A streaming torrent client in your browser, powered by webRTC and black magic.",
"main": "index.js",
"dependencies": {
"async": "0.x",
@@ -21,7 +21,7 @@
},
"devDependencies": {
"tape": "*",
- "call-log": "~0.1.0"
+ "call-log": "*"
},
"scripts": {
"test": "tape test/*.js"
diff --git a/test/basic.js b/test/basic.js
new file mode 100644
index 0000000..cf79627
--- /dev/null
+++ b/test/basic.js
@@ -0,0 +1,6 @@
+var test = require('tape')
+
+test('TODO', function (t) {
+ t.ok(true)
+ t.end()
+}) \ No newline at end of file