forked from jonreid/XcodeCoverage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXcodeCoverage.podspec
22 lines (19 loc) · 968 Bytes
/
XcodeCoverage.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'XcodeCoverage'
s.version = '1.3.0'
s.summary = 'Code coverage for Xcode projects'
s.description = <<-DESC
XcodeCoverage provides a simple way to generate reports of the code coverage
of your Xcode project. Generated reports include HTML and Cobertura XML.
Coverage data excludes Apple's SDKs, and the exclusion rules can be customized.
DESC
s.homepage = 'https://github.com/jonreid/XcodeCoverage'
s.license = 'MIT'
s.author = {'Jon Reid' => 'jon@qualitycoding.org'}
s.social_media_url = 'https://twitter.com/qcoding'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = {:git => 'https://github.com/jonreid/XcodeCoverage.git', :tag => 'v1.3.0'}
# XcodeCoverage files will be brought into the filesystem, but not added to your .xcodeproj.
s.preserve_paths = '*', '**'
end