File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "ReactiveKit"
3
- s . version = "2.0.0-beta1 "
3
+ s . version = "2.0.0-beta2 "
4
4
s . summary = "A Swift Reactive Programming Framework"
5
5
s . description = "ReactiveKit is a collection of Swift frameworks for reactive and functional reactive programming."
6
6
s . homepage = "https://github.com/ReactiveKit/ReactiveKit"
7
7
s . license = 'MIT'
8
8
s . author = { "Srdan Rasic" => "[email protected] " }
9
- s . source = { :git => "https://github.com/ReactiveKit/ReactiveKit.git" , :tag => "v2.0.0-beta1 " }
9
+ s . source = { :git => "https://github.com/ReactiveKit/ReactiveKit.git" , :tag => "v2.0.0-beta2 " }
10
10
11
11
s . ios . deployment_target = '8.0'
12
12
s . osx . deployment_target = '10.9'
Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ extension Property: BindableType {
67
67
/// Can accept a disposable that will be disposed on receiver's deinit.
68
68
public func observer( disconnectDisposable: Disposable ) -> StreamEvent < T > -> ( ) {
69
69
disposeBag. addDisposable ( disconnectDisposable)
70
- return { [ weak self] in self ? . subject. on ( $0) }
70
+ return { [ weak self] event in
71
+ if let value = event. element {
72
+ self ? . value = value
73
+ }
74
+ }
71
75
}
72
76
}
You can’t perform that action at this time.
0 commit comments