Skip to content

Commit

Permalink
more rpominov -> kefirjs updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rpominov committed Nov 5, 2017
1 parent b9feb7f commit db4ea0d
Show file tree
Hide file tree
Showing 17 changed files with 2,991 additions and 109 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See also [Deprecated API docs](https://github.com/kefirjs/kefir/blob/master/depr

[![Build Status](https://travis-ci.org/kefirjs/kefir.svg?branch=master)](https://travis-ci.org/kefirjs/kefir)
[![Dependency Status](https://david-dm.org/kefirjs/kefir.svg)](https://david-dm.org/kefirjs/kefir)
[![devDependency Status](https://david-dm.org/kefirjs/kefir/dev-status.svg)](https://david-dm.org/rpominov/kefir#info=devDependencies)
[![devDependency Status](https://david-dm.org/kefirjs/kefir/dev-status.svg)](https://david-dm.org/kefirjs/kefir#info=devDependencies)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pozadi/kefir?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)


Expand Down
2 changes: 1 addition & 1 deletion bacon-vs-kefir-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
| `Bacon.later(delay, value)` | `Kefir.later(delay, value)` | |
| `new Bacon.EventStream(subscribe)` | Use `Kefir.stream()` | |
| Use bus | `Kefir.emitter()` | |
| `Bacon.fromBinder(subscribe)` | `Kefir.stream(subscribe)` | In Kefir [emitter](https://rpominov.github.io/kefir/#emitter-object) is used unlike `sink` function in Bacon. In Kefir there is no feature "The sink function may return Bacon.noMore ..." |
| `Bacon.fromBinder(subscribe)` | `Kefir.stream(subscribe)` | In Kefir [emitter](https://kefirjs.github.io/kefir/#emitter-object) is used unlike `sink` function in Bacon. In Kefir there is no feature "The sink function may return Bacon.noMore ..." |
| No alt. | `Kefir.withInterval(interval, handler)` | |


Expand Down
18 changes: 4 additions & 14 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{
"name": "kefir",
"version": "3.8.0",
"homepage": "https://github.com/rpominov/kefir",
"authors": [
"Roman Pominov <[email protected]>"
],
"homepage": "https://github.com/kefirjs/kefir",
"authors": ["Roman Pominov <[email protected]>"],
"description": "Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage",
"main": "dist/kefir.js",
"moduleType": [
"amd",
"globals",
"node"
],
"moduleType": ["amd", "globals", "node"],
"keywords": [
"frp",
"bacon",
Expand All @@ -28,9 +22,5 @@
"Observable"
],
"license": "MIT",
"ignore": [
"**",
"!dist/**",
"!LICENSE.txt"
]
"ignore": ["**", "!dist/**", "!LICENSE.txt"]
}
134 changes: 67 additions & 67 deletions changelog.md

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions deprecated-api-docs.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Deprecated API Methods documentation

All documentation on deprecated methods are moved
from [main docs](http://rpominov.github.io/kefir/) to this file.
from [main docs](http://kefirjs.github.io/kefir/) to this file.

See also [2.x's version of this document](https://github.com/rpominov/kefir/blob/v2/deprecated-api-docs.md) containing docs on methods that were removed in 3.0.
See also [2.x's version of this document](https://github.com/kefirjs/kefir/blob/v2/deprecated-api-docs.md) containing docs on methods that were removed in 3.0.


### `obs.awaiting(otherObs)` [#145](https://github.com/rpominov/kefir/issues/145)
### `obs.awaiting(otherObs)` [#145](https://github.com/kefirjs/kefir/issues/145)

Returns a property that represents the awaiting status of two observables,
i.e. answers the question «Has **obs** observable emitted a value since
Expand Down Expand Up @@ -39,7 +39,7 @@ result: f---t-f--t-f--t-fX
```


### `obs.valuesToErrors([handler])` [#149](https://github.com/rpominov/kefir/issues/149)
### `obs.valuesToErrors([handler])` [#149](https://github.com/kefirjs/kefir/issues/149)

Converts values to errors. By default it converts all values to errors,
but you can specify a custom **handler** function to change that. The **handler**
Expand Down Expand Up @@ -75,7 +75,7 @@ result: ---•---e---•---eX
```


### `obs.errorsToValues([handler])` [#149](https://github.com/rpominov/kefir/issues/149)
### `obs.errorsToValues([handler])` [#149](https://github.com/kefirjs/kefir/issues/149)

Same as valuesToErrors but vice versa.

Expand Down Expand Up @@ -106,7 +106,7 @@ result: ---•---e---•---eX
```


### `obs.endOnError()` [#150](https://github.com/rpominov/kefir/issues/150)
### `obs.endOnError()` [#150](https://github.com/kefirjs/kefir/issues/150)

Makes an observable to end on first error.

Expand Down
4 changes: 2 additions & 2 deletions docs-src/descriptions/interop.pug
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ div


+descr-method('static-land', 'Static Land', 'Kefir.staticLand.Observable').
Provides #[a(href='https://github.com/rpominov/static-land') Static Land] compatibility.
Provides #[a(href='https://github.com/kefirjs/static-land') Static Land] compatibility.
The #[tt Observable] type object supports following algebras:
Semigroup, Monoid, Functor, Bifunctor, Apply, Applicative, Chain, Monad.

Expand All @@ -119,4 +119,4 @@ pre(title='console output')
> [constant.map] <end:current>

p.
#[a(href='https://github.com/rpominov/static-land') #[img(src='https://raw.githubusercontent.com/rpominov/static-land/master/logo/logo.png' width='80' height='50')]]
#[a(href='https://github.com/kefirjs/static-land') #[img(src='https://raw.githubusercontent.com/rpominov/static-land/master/logo/logo.png' width='80' height='50')]]
Loading

0 comments on commit db4ea0d

Please sign in to comment.