1
- Pod ::Spec . new do |spec |
2
- spec . name = 'XcodeCoverage'
3
- spec . summary = 'Code coverage for Xcode projects'
4
- spec . version = '1.0.2'
5
- spec . platform = :ios
6
- spec . ios . deployment_target = '6.0'
7
- spec . authors = { 'Jon Reid' => '[email protected] ' }
8
- spec . homepage = 'https://github.com/jonreid/XcodeCoverage'
9
- spec . license = 'MIT'
10
- spec . source = { :git => 'https://github.com/jonreid/XcodeCoverage.git' , :tag => "#{ spec . version } " }
1
+ Pod ::Spec . new do |s |
2
+ s . name = 'XcodeCoverage'
3
+ s . version = '1.0.2'
4
+ s . summary = 'Code coverage for Xcode projects'
5
+ s . description = <<-DESC
6
+ XcodeCoverage provides a simple way to generate reports of the code coverage
7
+ of your Xcode project. Generated reports include HTML and Cobertura XML.
8
+
9
+ Coverage data excludes Apple's SDKs, and the exclusion rules can be customized.
10
+ DESC
11
+ s . homepage = 'https://github.com/jonreid/XcodeCoverage'
12
+ s . license = 'MIT'
13
+ s . author = { 'Jon Reid' => '[email protected] ' }
14
+ s . social_media_url = 'https://twitter.com/qcoding'
15
+
16
+ s . ios . deployment_target = '6.0'
17
+ s . osx . deployment_target = '10.8'
18
+ s . source = { :git => 'https://github.com/jonreid/XcodeCoverage.git' , :tag => "#{ s . version } " }
11
19
12
- #these files will be brought into the filesystem, but not added to your .xcodeproj.
13
- spec . preserve_paths = 'cleancov' , 'getcov' , 'llvm-cov-wrapper.sh' , 'envcov.sh' , 'lcov-1.11/*' , 'exportenv.sh' , 'run_code_coverage_post.sh'
14
-
15
- spec . requires_arc = true
16
- end
20
+ # These files will be brought into the filesystem, but not added to your .xcodeproj.
21
+ s . preserve_paths = 'cleancov' , 'envcov.sh' , 'exportenv.sh' , 'getcov' , 'lcov-1.11/*' , 'llvm-cov-wrapper.sh' , 'run_code_coverage_post.sh'
22
+ end
0 commit comments