Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bittrance committed Nov 7, 2017
1 parent be300a4 commit 3289947
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The asynchronous nature of RxRuby makes it hard to write good specs for code tha

The goal of rx-rspec is to provide powerful matchers that lets you express your expectations in a traditional rspec-like synchronous manner.

Currently, the ambition of this project is simply to support the use cases that I encounter in my own usage of RxRuby. Your pull requests are wellcome.
Currently, the ambition of this project is simply to support the use cases that I encounter in my own usage of RxRuby. Your pull requests are welcome.

## Usage

Expand All @@ -38,6 +38,6 @@ end
rx-spec include the following matchers:

- **emit_nothing()** matches an observable that completes without emitting events or erroring.
- **emit_exactly()** metches against all items produced by the observable and requires the observable to be completed.
- **emit_exactly()** matches against all items produced by the observable and requires the observable to be completed.
- **emit_first()** matches against the first elements of the observable, but does not require it to complete
- **emit_include()** consumes elements until the expected elements have occurred
2 changes: 1 addition & 1 deletion rx-rspec.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = 'rx-rspec'
spec.version = '0.2.0'
spec.version = '0.3.0'
spec.summary = 'rspec testing support for RxRuby'
spec.description = 'Writing specs for reactive streams is tricky both because of their asynchronous nature and because their next/error/completed semantics. The goal of rx-rspec is to provide powerful matchers that lets you express your expectations in a traditional rspec-like synchronous manner.'
spec.authors = ['Anders Qvist']
Expand Down

0 comments on commit 3289947

Please sign in to comment.