Skip to content

Commit adcb8bf

Browse files
committed
minimum iOS version increased
1 parent dd8cc97 commit adcb8bf

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Requirements
1010

11-
- iOS 8.0+
11+
- iOS 9.0+
1212
- Xcode 8+
1313
- Swift 3
1414

Diff for: ReusableView.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Pod::Spec.new do |s|
99
s.author = { "Artem Antihevich" => "[email protected]" }
1010
s.social_media_url = 'https://twitter.com/sinarionn'
1111

12-
s.ios.deployment_target = "8.0"
12+
s.ios.deployment_target = "9.0"
1313
s.source = { :git => "https://github.com/sinarionn/ReusableView.git", :tag => s.version.to_s }
1414
s.requires_arc = true
1515
s.dependency 'RxSwift' , '~> 3.0.0'
1616

17-
s.source_files = 'Sources/*.swift'
17+
s.source_files = 'Sources/*.swift'
1818
end

Diff for: ReusableView.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@
819819
GCC_C_LANGUAGE_STANDARD = gnu99;
820820
GCC_NO_COMMON_BLOCKS = YES;
821821
INFOPLIST_FILE = Plists/TestApp.plist;
822-
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
822+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
823823
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
824824
MTL_ENABLE_DEBUG_INFO = YES;
825825
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.TestApp;
@@ -842,7 +842,7 @@
842842
GCC_C_LANGUAGE_STANDARD = gnu99;
843843
GCC_NO_COMMON_BLOCKS = YES;
844844
INFOPLIST_FILE = Plists/TestApp.plist;
845-
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
845+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
846846
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
847847
MTL_ENABLE_DEBUG_INFO = NO;
848848
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.TestApp;

Diff for: Tests/ReusableViewTests.swift

-12
Original file line numberDiff line numberDiff line change
@@ -141,18 +141,6 @@ class ReusableViewTests: XCTestCase {
141141

142142
}
143143

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-
156144

157145
fileprivate class TestableNonEquatable {
158146
}

0 commit comments

Comments
 (0)