Skip to content

Commit

Permalink
Version 0.3.3
Browse files Browse the repository at this point in the history
PR-URL: #188
  • Loading branch information
tshemsedinov committed Jul 13, 2017
1 parent 780ec43 commit 1170e5d
Show file tree
Hide file tree
Showing 14 changed files with 1,206 additions and 367 deletions.
4 changes: 3 additions & 1 deletion .bithoundrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
}
},
"test": [
"tests/**"
"tests/**",
"test/**",
"doc/**"
]
}
6 changes: 3 additions & 3 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Timur Shemsedinov <[email protected]>
Alexey Orlenko <[email protected]>
Vlad Dziuba <[email protected]>
Dmytro Nechai <[email protected]>
Oleksandr Kovalchuk <[email protected]>
Vladyslav Dukhin <[email protected]>
Alexey Orlenko <[email protected]>
Arthur Myronenko <[email protected]>
Alexey Kachan <[email protected]>
Dmytro Nechai <[email protected]>
Vlad Dziuba <[email protected]>
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Library of Asynchronous Programming Abstractions
# Asynchronous Programming Library

[![TravisCI](https://travis-ci.org/metarhia/metasync.svg?branch=master)](https://travis-ci.org/metarhia/metasync)
[![bitHound](https://www.bithound.io/github/metarhia/metasync/badges/score.svg)](https://www.bithound.io/github/metarhia/metasync)
Expand Down Expand Up @@ -62,7 +62,9 @@ const fs = require('fs');
const dc = metasync.collect(4);

dc.pick('user', { name: 'Marcus Aurelius' });
fs.readFile('HISTORY.md', (err, data) => dc.collect('history', err, data));
fs.readFile('HISTORY.md',
(err, data) => dc.collect('history', err, data)
);
dc.take('readme', fs.readFile, 'README.md');
setTimeout(() => dc.pick('timer', { date: new Date() }), 1000);

Expand Down
140 changes: 0 additions & 140 deletions doc/api.txt

This file was deleted.

Loading

0 comments on commit 1170e5d

Please sign in to comment.