-
Notifications
You must be signed in to change notification settings - Fork 317
/
XcodeCoverage.podspec
22 lines (19 loc) · 980 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.4.0'
s.summary = 'Code coverage for Xcode projects'
s.description = <<-DESC
XcodeCoverage provides a simple way to generate reports of the Objective-C 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' => '[email protected]'}
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.4.0'}
# XcodeCoverage files will be brought into the filesystem, but not added to your .xcodeproj.
s.preserve_paths = '*', '**'
end