xcov 0.12.1 → 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/xcov/options.rb +5 -0
- data/lib/xcov/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 535ac4f3a9466fe2baae22f5796403f8851cdf13
|
|
4
|
+
data.tar.gz: 8ef8bc43fec616155505ff6134b1b8a1f15574e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 992887cc4b95dae0af0e33fd944b1d50f0f9475021f87bf3d7528315994c4e518e8a6c3dedde8ee4256655b3a1c8ecbcf93ba5dd8f98cfb2c91b031df4b19c38
|
|
7
|
+
data.tar.gz: ad35a2549595353e1a973081a9b9c48f00ea72314a31805b2634586fac19f17fafc39bb9c50dfca8e5d61feaa7a567432eb69c56959498f59b9ee04a08e475fe
|
data/README.md
CHANGED
|
@@ -43,6 +43,7 @@ xcov -w LystSDK.xcworkspace -s LystSDK -o xcov_output
|
|
|
43
43
|
* `--workspace` `-w`: Path of your `xcworkspace` file.
|
|
44
44
|
* `--project` `-p`: Path of your `xcodeproj` file (optional).
|
|
45
45
|
* `--scheme` `-s`: Scheme of the project to analyze.
|
|
46
|
+
* `--configuration` `-q`: The configuration used when building the app. Defaults to 'Release'.
|
|
46
47
|
* `--output_directory` `-o`: Path for the output folder where the report files will be saved.
|
|
47
48
|
* `--source_directory` `-r`: The path to project's root directory.
|
|
48
49
|
* `--derived_data_path` `-j`: Path of your project `Derived Data` folder (optional).
|
data/lib/xcov/options.rb
CHANGED
|
@@ -35,6 +35,11 @@ module Xcov
|
|
|
35
35
|
optional: true,
|
|
36
36
|
env_name: "XCOV_SCHEME",
|
|
37
37
|
description: "The project's scheme. Make sure it's marked as `Shared`"),
|
|
38
|
+
FastlaneCore::ConfigItem.new(key: :configuration,
|
|
39
|
+
short_option: "-q",
|
|
40
|
+
env_name: "XCOV_CONFIGURATION",
|
|
41
|
+
description: "The configuration used when building the app. Defaults to 'Release'",
|
|
42
|
+
optional: true),
|
|
38
43
|
FastlaneCore::ConfigItem.new(key: :source_directory,
|
|
39
44
|
short_option: "-r",
|
|
40
45
|
optional: true,
|
data/lib/xcov/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carlos Vidal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-11-
|
|
11
|
+
date: 2016-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|