-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathFox.podspec
More file actions
37 lines (28 loc) · 1.15 KB
/
Fox.podspec
File metadata and controls
37 lines (28 loc) · 1.15 KB
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
27
28
29
30
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "Fox"
s.version = "1.0.1"
s.summary = "A property-based testing library"
s.description = <<-DESC
Why write tests when you can generate them? Fox is a port of Clojure's
popular test.check.
Specify your tests in terms of properties your code should hold. Fox's job is
to generate tests to find a counter-example that your property does not hold.
Fox will also shrink the counter-example to the smallest possible example
to make it easier to debug failures.
DESC
s.homepage = "https://github.com/jeffh/Fox"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.md' }
s.author = { "Jeff Hui" => "jeff@jeffhui.net" }
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/jeffh/Fox.git", :tag => "v1.0.1" }
s.source_files = "Fox/**/*.{h,m,mm,swift}"
s.public_header_files = "Fox/Public/**/*.h"
s.framework = 'XCTest'
s.requires_arc = true
s.libraries = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libc++',
}
end