fastlane-plugin-redpill 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3696d5c52f506a543a8a5c51d4b9e4c939a13027
4
- data.tar.gz: c82977ee489356dbf631417770c388455481596a
3
+ metadata.gz: 1c06c968a3284b720b303bd2a9456747a6238b55
4
+ data.tar.gz: 71a10f563b3fec231d437b1c935b978ff96d6796
5
5
  SHA512:
6
- metadata.gz: 217b1f7ae05182c74562940975df7ccf3eb7b1482878137753292a13cf94ac9311054b7e86a7bf079f938cd6866db99b06efef3e5b9aeb617cd637e1fc8483f3
7
- data.tar.gz: 59f29a132228b4c3b328cd24cbf6449a7ae8f2b0dac7d6f20b3f96ae2aa83f860218c325de43fcc9806f27bf1b2e5e8d67d286fa463b89b251affa560a189efb
6
+ metadata.gz: cf6644d99e382f37da12a4a07df5baf94b1356c9c91b38150e4b5c034408b22dd7f36b2d8b2de040345592878581f32aee7b4154dc211b04167fb32cc95c9b2d
7
+ data.tar.gz: b1c8c381c20c4640db31cec55a7d99c803397c73fb28829245d98da4e9fd8d8a6b0ccd1b614788eb50939b528abe570abf0996bc001428fccfff703526d06df5
@@ -6,13 +6,13 @@ module Fastlane
6
6
  cmd = bin_bluepill.to_s
7
7
  cmd << " --xctestrun-path #{params[:xctestrun_path]}"
8
8
  cmd << " -o #{params[:output_dir]}"
9
- cmd << " -a #{params[:app]}"
9
+ cmd << " -a #{params[:app]}" if params[:app]
10
10
  cmd << " -d '#{params[:device]}'"
11
11
  cmd << " -r '#{params[:runtime]}'"
12
12
  cmd << " -e #{params[:exclude].join(' -e ')}" if params[:exclude].length > 0
13
13
  cmd << " -i #{params[:include].join(' -i ')}" if params[:include].length > 0
14
14
  cmd << " -H" if params[:headless]
15
- cmd << " -X #{params[:xcode_path]}"
15
+ cmd << " -X #{params[:xcode_path]}" if params[:xcode_path]
16
16
  cmd << " -J" if params[:json_output]
17
17
  cmd << " -j" if params[:junit_output]
18
18
  cmd << " -p" if params[:plain_output]
@@ -93,7 +93,6 @@ module Fastlane
93
93
  FastlaneCore::ConfigItem.new(key: :xcode_path,
94
94
  env_name: 'REDPILL_XCODE_PATH',
95
95
  description: 'Path to xcode developer directory',
96
- default_value: `xcode-select -p`.strip,
97
96
  optional: true,
98
97
  type: String),
99
98
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Redpill
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-redpill
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - omniprojects