fastlane-plugin-au_auto_close_upload 0.1.1 → 0.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b0aa06848954d493d8dc6c33adba96d78005969
|
4
|
+
data.tar.gz: 72de54b21d6d367c63e52c5fac1f1d654f8ef025
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5568740e0af9326bdab8a4d5771bb7de21a5032abdbc19cea257d91f22389ac65b07090f084275e621b96e16d325716f380f361ad16d2804491f85808386934e
|
7
|
+
data.tar.gz: a97ed25717a5e51e88a2bde59d2c60cacdea33039e1a6df3067d25b1fd7c4efff287a5ebd6db0ff5851b3c942571260cb0872e42e0be50a57f056a8a98fdf587
|
@@ -12,12 +12,12 @@ module Fastlane
|
|
12
12
|
# ipa zip
|
13
13
|
# ipa = File.basename(params[:ipa_path])
|
14
14
|
command = "tar -zcvf ipa.tgz #{params[:ipa_path]}"
|
15
|
-
Fastlane::Actions.sh command, log:
|
15
|
+
Fastlane::Actions.sh command, log: :verbose
|
16
16
|
|
17
17
|
# dzym zip
|
18
18
|
# dsym = File.basename(params[:dsym_path])
|
19
19
|
command = "tar -zcvf dsym.tgz #{params[:dsym_path]}"
|
20
|
-
Fastlane::Actions.sh command, log:
|
20
|
+
Fastlane::Actions.sh command, log: :verbose
|
21
21
|
|
22
22
|
# uploading
|
23
23
|
UI.message("Uploading artifacts to auto-close service...")
|
@@ -26,7 +26,7 @@ module Fastlane
|
|
26
26
|
command = "python tools/upload.py --token #{params[:token]} "
|
27
27
|
command << "--final " if params[:final]
|
28
28
|
command << "--build-name #{params[:build_name]} ipa.tgz dsym.tgz "
|
29
|
-
Fastlane::Actions.sh command, log:
|
29
|
+
Fastlane::Actions.sh command, log: :verbose
|
30
30
|
end
|
31
31
|
|
32
32
|
def self.description
|
@@ -63,6 +63,11 @@ module Fastlane
|
|
63
63
|
default_value: build_name.shellescape,
|
64
64
|
optional: false),
|
65
65
|
|
66
|
+
FastlaneCore::ConfigItem.new(key: :verbose,
|
67
|
+
description: "User verbose mode",
|
68
|
+
default_value: false,
|
69
|
+
optional: false),
|
70
|
+
|
66
71
|
FastlaneCore::ConfigItem.new(key: :ipa_path,
|
67
72
|
env_name: "AU_IPA_PATH",
|
68
73
|
description: "Path to your IPA file. Optional if you use the `gym` or `xcodebuild` action",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-au_auto_close_upload
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|