forked from jonreid/MockUIAlertController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockUIAlertController.podspec
More file actions
23 lines (20 loc) · 1.09 KB
/
MockUIAlertController.podspec
File metadata and controls
23 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'MockUIAlertController'
s.version = '3.0.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.
No actual alerts are presented. This means:
* The workflow doesn't pause for an action to be selected.
* Tests are blazing fast.
DESC
s.homepage = 'https://github.com/jonreid/MockUIAlertController'
s.license = 'MIT'
s.social_media_url = 'https://twitter.com/qcoding'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/jonreid/MockUIAlertController.git', :tag => 'v3.0.0' }
s.source_files = 'Source/MockUIAlertController/*.{h,m}'
s.public_header_files = 'Source/MockUIAlertController/QCOMockAlertVerifier.h', 'Source/MockUIAlertController/QCOMockPopoverPresentationController.h'
s.requires_arc = true
end