This repository has been archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Podspec: Bump deployment target to iOS 9.0
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Pod::Spec.new do |s| | |
s.version = '3.1.0' | ||
s.summary = 'Mock alerts and action sheets for iOS unit tests' | ||
s.description = <<-DESC | ||
MockUIAlertController lets you mock iOS alerts and action sheets for unit tests, based on the UIAlertController introduced for iOS 8. | ||
MockUIAlertController lets you mock iOS alerts and action sheets for unit tests. | ||
No actual alerts are presented. This means: | ||
|
@@ -15,7 +15,7 @@ Pod::Spec.new do |s| | |
s.author = { 'Jon Reid' => '[email protected]' } | ||
s.social_media_url = 'https://twitter.com/qcoding' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.ios.deployment_target = '9.0' | ||
s.source = { :git => 'https://github.com/jonreid/MockUIAlertController.git', :tag => 'v3.1.0' } | ||
s.source_files = 'Source/MockUIAlertController/*.{h,m}' | ||
s.public_header_files = 'Source/MockUIAlertController/QCOMockAlertVerifier.h', 'Source/MockUIAlertController/QCOMockPopoverPresentationController.h' | ||
|