fastlane-plugin-waldo 2.0.0 → 2.0.1

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
  SHA256:
3
- metadata.gz: 2fe9bf2266ddb25b5f97e60900275c9619e8dedd8723e1ac14bbb6c37939ae2a
4
- data.tar.gz: dae94679633cfcafc9a71bf5e683ed9097af91619df4443d00b6bf879b927089
3
+ metadata.gz: fa67171d14f9daf43bb1e2d64b6b2add082b014b3bc9063f6c6d89f94f12bce6
4
+ data.tar.gz: 506bbdf57902a6bc9eb53de9ec511dc9402db1f4b186a436b3596f583506e1ff
5
5
  SHA512:
6
- metadata.gz: e93282d73cf4d764db41e40727265447b1b5feb7830bda0b2d7d4643826595a748f186336efa3cf5f30a890e637054a042283f78edd865e8c5cb569608b1db27
7
- data.tar.gz: e22adde22bef309cd6cb43ed6b9bd58b80f3ff43785c0c28cfa04b1bf70d5d111f78dea00b104df6bea3105b8023854fcbf101570cd0e5e520dd1c3b4f104efa
6
+ metadata.gz: e5b75644e5a86cb924bcc0d6c83e0421b16ac165ab8eacbbe35abc0eaef34235f590949a1466a3b0bc2e6fd96da799dcc7c08a1ba4cd51ed45051d5f0cb89817
7
+ data.tar.gz: f421167cc09941741c7e7fc368b6a771839108d200184e0e41bf47be09ee44df958e6534f9595d9860204e3ddd2fa0bf9e5bfb022d7fae2415c9ed1c73dac2a9
@@ -15,26 +15,16 @@ module Fastlane
15
15
  end
16
16
 
17
17
  def self.available_options
18
- case Helper::WaldoHelper.get_platform
19
- when :android
20
- apk_path_default = Dir["*.apk"].last || Dir[File.join('app', 'build', 'outputs', 'apk', 'app-release.apk')].last
21
- when :ios
22
- app_path_default = Dir["*.app"].sort_by { |x| File.mtime(x) }.last
23
- ipa_path_default = Dir["*.ipa"].sort_by { |x| File.mtime(x) }.last
24
- end
25
-
26
18
  [
27
19
  # iOS-specific
28
20
  FastlaneCore::ConfigItem.new(key: :app_path,
29
21
  env_name: 'WALDO_APP_PATH',
30
22
  description: 'Path to your app file',
31
- default_value: app_path_default,
32
- default_value_dynamic: true,
33
23
  optional: true),
34
24
  FastlaneCore::ConfigItem.new(key: :ipa_path,
35
25
  env_name: 'WALDO_IPA_PATH',
36
26
  description: 'Path to your IPA file (optional if you use the _gym_ or _xcodebuild_ action)',
37
- default_value: Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH] || ipa_path_default,
27
+ default_value: Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH],
38
28
  default_value_dynamic: true,
39
29
  optional: true),
40
30
  FastlaneCore::ConfigItem.new(key: :dsym_path,
@@ -51,7 +41,7 @@ module Fastlane
51
41
  FastlaneCore::ConfigItem.new(key: :apk_path,
52
42
  env_name: 'WALDO_APK_PATH',
53
43
  description: 'Path to your APK file (optional if you use the _gradle_ action)',
54
- default_value: Actions.lane_context[Actions::SharedValues::GRADLE_APK_OUTPUT_PATH] || apk_path_default,
44
+ default_value: Actions.lane_context[Actions::SharedValues::GRADLE_APK_OUTPUT_PATH],
55
45
  default_value_dynamic: true,
56
46
  optional: true),
57
47
  # General
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Waldo
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-waldo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. G. Pusey
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-30 00:00:00.000000000 Z
11
+ date: 2021-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description:
69
+ description:
70
70
  email: john@waldo.io
71
71
  executables: []
72
72
  extensions: []
@@ -83,7 +83,7 @@ homepage: https://github.com/waldoapp/fastlane-plugin-waldo
83
83
  licenses:
84
84
  - MIT
85
85
  metadata: {}
86
- post_install_message:
86
+ post_install_message:
87
87
  rdoc_options: []
88
88
  require_paths:
89
89
  - lib
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  version: '0'
100
100
  requirements: []
101
101
  rubygems_version: 3.0.3
102
- signing_key:
102
+ signing_key:
103
103
  specification_version: 4
104
104
  summary: Upload build to Waldo
105
105
  test_files: []