File tree Expand file tree Collapse file tree 11 files changed +23
-23
lines changed Expand file tree Collapse file tree 11 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 1
- ruby-2.3 .1
1
+ ruby-2.4 .1
Original file line number Diff line number Diff line change 1
1
language : objective-c
2
- osx_image : xcode8.3
2
+ osx_image : xcode9
3
3
rvm :
4
4
- " 2.4.1"
5
5
Original file line number Diff line number Diff line change 1
- github "ReactiveX/RxSwift" ~> 3.4
1
+ github "ReactiveX/RxSwift" ~> 4.0
Original file line number Diff line number Diff line change 1
- github "ReactiveX/RxSwift" "3.5 .0"
1
+ github "ReactiveX/RxSwift" "4.0 .0"
Original file line number Diff line number Diff line change 1
- 3 .0
1
+ 4 .0
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ def library
14
14
end
15
15
16
16
target 'Demo' do
17
- platform :ios , '8 .0'
17
+ platform :ios , '9 .0'
18
18
library
19
19
20
20
target 'RxViewModelTests-iOS' do
21
- platform :ios , '8 .0'
21
+ platform :ios , '9 .0'
22
22
inherit! :search_paths
23
23
24
24
test_pods
@@ -37,4 +37,4 @@ target 'RxViewModelTests-macOS' do
37
37
library
38
38
39
39
test_pods
40
- end
40
+ end
Original file line number Diff line number Diff line change 1
1
PODS:
2
- - Nimble (7.0.1 )
3
- - Quick (1.1 .0)
4
- - RxSwift (3.5 .0)
5
- - RxViewModel (4.0 .0):
6
- - RxSwift (~> 3.5 .0)
2
+ - Nimble (7.0.2 )
3
+ - Quick (1.2 .0)
4
+ - RxSwift (4.0 .0)
5
+ - RxViewModel (5.1 .0):
6
+ - RxSwift (~> 4 .0)
7
7
8
8
DEPENDENCIES:
9
9
- Nimble
@@ -15,11 +15,11 @@ EXTERNAL SOURCES:
15
15
:path: "../"
16
16
17
17
SPEC CHECKSUMS:
18
- Nimble: 657d000e11df8aebe27cdaf9d244de7f30ed87f7
19
- Quick: dafc587e21eed9f4cab3249b9f9015b0b7a7f71d
20
- RxSwift: 18ee9d78b45edb3b0b7e79916b47a116e6dbc842
21
- RxViewModel: f9dbd276b3bdc9858cf8ef7cf032fe199ddb27f6
18
+ Nimble: bfe1f814edabba69ff145cb1283e04ed636a67f2
19
+ Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08
20
+ RxSwift: fd680d75283beb5e2559486f3c0ff852f0d35334
21
+ RxViewModel: 4fda1b24076c00dee8993015e12bce17091b8fb7
22
22
23
- PODFILE CHECKSUM: 5b740ff0f8e82b1a56bee6decd0acad5bd6013b9
23
+ PODFILE CHECKSUM: f3dc2ef276e60482f87b2abfca65a634f6640961
24
24
25
25
COCOAPODS: 1.2.1
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def sdks
26
26
return {
27
27
ios : 'iphonesimulator' ,
28
28
macos : 'macosx' ,
29
- tvos : 'appletvsimulator10.2 '
29
+ tvos : 'appletvsimulator11.0 '
30
30
}
31
31
end
32
32
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |s |
3
3
s . name = "RxViewModel"
4
- s . version = "5.0.1 "
4
+ s . version = "5.1.0 "
5
5
s . summary = "`RxViewModel` is the marriage between `MVVM` and `Rx` extensions. A blatant «imitation» of `ReactiveViewModel` using `RxCocoa`."
6
6
s . description = <<-DESC
7
7
`RxViewModel` is the marriage between `MVVM` and `Rx` extensions
@@ -25,6 +25,6 @@ Long story short: a blatant «imitation» of `ReactiveViewModel `using `RxCocoa`
25
25
s . requires_arc = true
26
26
27
27
s . source_files = 'Source/*.swift' , 'Source/Categories/*.swift'
28
- s . dependency 'RxSwift' , '~> 3.5 '
28
+ s . dependency 'RxSwift' , '~> 4.0 '
29
29
s . frameworks = 'Foundation'
30
30
end
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ open class RxViewModel: NSObject {
28
28
private dynamic var _active : Bool = false
29
29
30
30
/// Public «active» variable
31
- public dynamic var active : Bool {
31
+ @ objc public dynamic var active : Bool {
32
32
get { return _active }
33
33
set {
34
34
// Skip KVO notifications when the property hasn't actually changed. This is
You can’t perform that action at this time.
0 commit comments