We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cdeafd commit 17dceb9Copy full SHA for 17dceb9
language-adaptors/rxjava-jruby/README.md
@@ -1,14 +1,14 @@
1
# JRuby Adaptor for RxJava
2
3
4
-This adaptor allows 'org.jruby.RubyProc' lambda functions to be used and RxJava will know how to invoke them.
+This adaptor allows `org.jruby.RubyProc` lambda functions to be used and RxJava will know how to invoke them.
5
6
This enables code such as:
7
8
```ruby
9
Observable.toObservable("one", "two", "three")
10
.take(2)
11
- .subscribe(lambda{|arg| puts arg})
+ .subscribe(lambda { |arg| puts arg })
12
```
13
14
# Binaries
@@ -30,3 +30,9 @@ and for Ivy:
30
```xml
31
<dependency org="com.netflix.rxjava" name="rxjava-jruby" rev="x.y.z" />
32
33
+
34
+and for JBundler:
35
36
+```ruby
37
+jar 'com.netflix.rxjava:rxjava-ruby', 'x.y.z'
38
+```
0 commit comments