fastlane-plugin-dynatrace 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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f927981645e0ccc0e64b0140474e3ee4013b530fb8d3feed6222f73b45fa4f12
|
|
4
|
+
data.tar.gz: c178b4f934268c0d1499fdd33ab59a0e2e35fb1e4411c5c35095b4bd110686c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24197bea9f72df02426714998845f266b2b3cb19ffe51a4e9ae6d91940d0ea1d97b298084b49e7d0fd327c7151439d96520b16963a40a6294129d4c116a6576d
|
|
7
|
+
data.tar.gz: 3ac487931a3829562ad22d98921e59196ac7a987574ced78bc8dee4ce31a5c4003dc3d37691356cd6b0dccb0d69b0aed03c50d90e2753ed4b40903488b85e386
|
|
@@ -42,7 +42,7 @@ module Fastlane
|
|
|
42
42
|
if !(username)
|
|
43
43
|
UI.message "Username: #{params[:username]}"
|
|
44
44
|
end
|
|
45
|
-
|
|
45
|
+
|
|
46
46
|
UI.message("Downloading Dsyms from AppStore Connect")
|
|
47
47
|
Fastlane::Actions::DownloadDsymsAction.run(app_identifier: bundleId,
|
|
48
48
|
username: username,
|
|
@@ -70,6 +70,9 @@ module Fastlane
|
|
|
70
70
|
if (dsym_paths.count == 0)
|
|
71
71
|
UI.message "Symbol file path: #{params[:symbolsfile]}" #Ask the user for the symbolFiles path
|
|
72
72
|
dsym_paths = params[:symbolsfile]
|
|
73
|
+
symbolFilesCommandSnippet = "symbolsfile=\"#{dsym_paths}\""
|
|
74
|
+
else
|
|
75
|
+
symbolFilesCommandSnippet = "symbolsfile=\"#{dsym_paths[0]}\""
|
|
73
76
|
end
|
|
74
77
|
|
|
75
78
|
#Start constructing the command that will trigger the DTXDssClient
|
|
@@ -83,8 +86,8 @@ module Fastlane
|
|
|
83
86
|
command << "bundleName=\"#{params[:bundleName]}\""
|
|
84
87
|
command << "versionStr=\"#{version}\""
|
|
85
88
|
command << "version=\"#{params[:version]}\""
|
|
86
|
-
command <<
|
|
87
|
-
command << "server=\"#{params[:server]}\""
|
|
89
|
+
command << symbolFilesCommandSnippet
|
|
90
|
+
command << "server=\"#{params[:server]}\""
|
|
88
91
|
command << "DTXLogLevel=ALL -verbose" if params[:debugMode] == true
|
|
89
92
|
command << "forced=1" #So that we do not waste time with errors if the file already exists
|
|
90
93
|
|
|
@@ -92,8 +95,8 @@ module Fastlane
|
|
|
92
95
|
shell_command = command.join(' ')
|
|
93
96
|
|
|
94
97
|
|
|
95
|
-
UI.message("Dsym paths: #{dsym_paths}")
|
|
96
|
-
|
|
98
|
+
UI.message("Dsym paths: #{dsym_paths[0]}")
|
|
99
|
+
UI.message("#{shell_command}")
|
|
97
100
|
|
|
98
101
|
# Execute the shell command
|
|
99
102
|
sh "#{shell_command}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-dynatrace
|
|
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
|
- Mohamed Nassar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|