xcov 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 983a40d6b341b2b44237875badef9dce1e8cd408
4
- data.tar.gz: de4e9669a0a7132524b62f104c10537f0d230e1d
3
+ metadata.gz: 535ac4f3a9466fe2baae22f5796403f8851cdf13
4
+ data.tar.gz: 8ef8bc43fec616155505ff6134b1b8a1f15574e2
5
5
  SHA512:
6
- metadata.gz: 98d6623d61bafac863f37b7810a8b8ceaa1321258c97036b45a5f65ee0d5f4b5124e22aef6121c2fcb4820900f87745bb4e404fe3eb52167b33f470f57d9653e
7
- data.tar.gz: 025ea7643bae312e29c70cf66a25a0ea6ce36a442aa9f0ea2716ef18a46182bb56ae8c5f2853aedf94c6de3d9c4a2642b569b8bd438d8cec78cd232e56420492
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).
@@ -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,
@@ -1,6 +1,6 @@
1
1
  module Xcov
2
2
 
3
- VERSION = "0.12.1"
3
+ VERSION = "0.12.2"
4
4
  DESCRIPTION = "xcov is a friendly visualizer for Xcode's code coverage files"
5
5
 
6
6
  end
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.1
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-22 00:00:00.000000000 Z
11
+ date: 2016-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core