forked from Lightricks/expecta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Expecta.podspec
26 lines (21 loc) · 960 Bytes
/
Expecta.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'Expecta'
s.version = '1.0.3'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A matcher framework for Objective-C & Cocoa.'
s.homepage = 'http://github.com/petejkim/expecta'
s.author = { 'Peter Jihoon Kim' => '[email protected]' }
s.source = { :git => 'https://github.com/specta/expecta.git', :tag => "v#{s.version}" }
s.description = %{
Expecta is a matcher framework for Objective-C and Cocoa. The main
advantage of using Expecta over other matcher frameworks is that you do not
have to specify the data types. Also, the syntax of Expecta matchers is
much more readable and does not suffer from parenthesitis. If you have used
Jasmine before, you will feel right at home!
}
s.source_files = 'Expecta/**/*.{h,m}'
s.requires_arc = false
s.ios.deployment_target = '5.1.1'
s.osx.deployment_target = '10.7'
s.frameworks = 'Foundation', 'XCTest'
end