File tree 4 files changed +5
-17
lines changed
4 files changed +5
-17
lines changed Original file line number Diff line number Diff line change 8
8
9
9
## Requirements
10
10
11
- - iOS 8 .0+
11
+ - iOS 9 .0+
12
12
- Xcode 8+
13
13
- Swift 3
14
14
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ Pod::Spec.new do |s|
9
9
s . author = { "Artem Antihevich" => "[email protected] " }
10
10
s . social_media_url = 'https://twitter.com/sinarionn'
11
11
12
- s . ios . deployment_target = "8 .0"
12
+ s . ios . deployment_target = "9 .0"
13
13
s . source = { :git => "https://github.com/sinarionn/ReusableView.git" , :tag => s . version . to_s }
14
14
s . requires_arc = true
15
15
s . dependency 'RxSwift' , '~> 3.0.0'
16
16
17
- s . source_files = 'Sources/*.swift'
17
+ s . source_files = 'Sources/*.swift'
18
18
end
Original file line number Diff line number Diff line change 819
819
GCC_C_LANGUAGE_STANDARD = gnu99;
820
820
GCC_NO_COMMON_BLOCKS = YES;
821
821
INFOPLIST_FILE = Plists/TestApp.plist;
822
- IPHONEOS_DEPLOYMENT_TARGET = 8.1 ;
822
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0 ;
823
823
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
824
824
MTL_ENABLE_DEBUG_INFO = YES;
825
825
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.TestApp;
842
842
GCC_C_LANGUAGE_STANDARD = gnu99;
843
843
GCC_NO_COMMON_BLOCKS = YES;
844
844
INFOPLIST_FILE = Plists/TestApp.plist;
845
- IPHONEOS_DEPLOYMENT_TARGET = 8.1 ;
845
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0 ;
846
846
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
847
847
MTL_ENABLE_DEBUG_INFO = NO;
848
848
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.TestApp;
Original file line number Diff line number Diff line change @@ -141,18 +141,6 @@ class ReusableViewTests: XCTestCase {
141
141
142
142
}
143
143
144
- protocol ViewModelProtocol {
145
- var observable : Observable < String > { get }
146
- }
147
-
148
- class ReusableView : UIView , ReusableViewProtocol {
149
- @IBOutlet weak var label : UILabel !
150
-
151
- func onUpdate( with viewModel: ViewModelProtocol , disposeBag: DisposeBag ) {
152
- viewModel. observable. bindTo ( label. rx. text) . addDisposableTo ( disposeBag)
153
- }
154
- }
155
-
156
144
157
145
fileprivate class TestableNonEquatable {
158
146
}
You can’t perform that action at this time.
0 commit comments