forked from iiiyu/XCAsyncTestCase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XCAsyncTestCase.podspec
21 lines (18 loc) · 1.01 KB
/
XCAsyncTestCase.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "XCAsyncTestCase"
s.version = "0.0.1"
s.summary = "Asynchronous capable XCTestCase subclass"
s.description = <<-DESC
A longer description of XCAsyncTestCase in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "http://premosystems.github.io/XCAsyncTestCase/"
s.license = 'MIT (example)'
s.author = { "Premier Mobile Systems" => "[email protected]" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/iiiyu/XCAsyncTestCase.git", :tag => "0.0.1" }
s.source_files = 'AsyncXCTestingKit/', 'AsyncXCTestingKit/AsyncXCTestingKit/XCTestCase+AsyncTesting.{h,m}'
end