fastlane-plugin-dynatrace 0.1.2 → 0.1.3

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: f927981645e0ccc0e64b0140474e3ee4013b530fb8d3feed6222f73b45fa4f12
4
- data.tar.gz: c178b4f934268c0d1499fdd33ab59a0e2e35fb1e4411c5c35095b4bd110686c3
3
+ metadata.gz: 8829b20a5286c7ea44c321e874f1f49737e494f3a86792dfa5cb82a7008a9a1d
4
+ data.tar.gz: a7bdf898b7ecdf8b49dc97efb54f356b52efd870d07cdd3214c39486a873c3c9
5
5
  SHA512:
6
- metadata.gz: 24197bea9f72df02426714998845f266b2b3cb19ffe51a4e9ae6d91940d0ea1d97b298084b49e7d0fd327c7151439d96520b16963a40a6294129d4c116a6576d
7
- data.tar.gz: 3ac487931a3829562ad22d98921e59196ac7a987574ced78bc8dee4ce31a5c4003dc3d37691356cd6b0dccb0d69b0aed03c50d90e2753ed4b40903488b85e386
6
+ metadata.gz: 21f444b3a3d6d378431fb67c01ee0bd3551ab6e4ef43aab15f7e3b14954f724ab40a7c4af0a8b739a423f3903f226928e7af6bd4767b6f1991d6746d16a0c388
7
+ data.tar.gz: c70d1763a6d020372002152bdfe55af7466fe2b9aa23d957ef73c06d3c54139dfa9d7a41b3ec2f93e8fd9a55cb448cde1d49b90a2419138a0d39dab0519a8e3b
data/README.md CHANGED
@@ -10,6 +10,8 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
10
10
  fastlane add_plugin dynatrace
11
11
  ```
12
12
 
13
+ Make sure you have the latest version of the DSS client (bundled with the agent). You can download it here [Latest iOS Agent](https://downloads.dynatrace.com/clientservices/agent?version=latest&techtype=ios)
14
+
13
15
  ## About dynatrace
14
16
 
15
17
  This plugin allows you to decode and upload symbolication files to Dynatrace. You can also use it to first download your latest dSym files from AppStore Connect if you use Bitcode.
@@ -10,7 +10,6 @@ module Fastlane
10
10
  UI.message "DTXDssClientPath: #{params[:dtxDssClientPath]}"
11
11
  UI.message "Parameter API Token: #{params[:apitoken]}"
12
12
  UI.message "OS: #{params[:os]}"
13
- UI.message "Bundle name: #{params[:bundleName]}" if params[:os] == "ios"
14
13
  UI.message "Version string: #{params[:versionStr]}"
15
14
  UI.message "Version: #{params[:version]}"
16
15
  UI.message "Server URL: #{params[:server]}"
@@ -83,7 +82,6 @@ module Fastlane
83
82
  command << "apitoken=\"#{params[:apitoken]}\""
84
83
  command << "os=#{params[:os]}"
85
84
  command << "bundleId=\"#{bundleId}\""
86
- command << "bundleName=\"#{params[:bundleName]}\""
87
85
  command << "versionStr=\"#{version}\""
88
86
  command << "version=\"#{params[:version]}\""
89
87
  command << symbolFilesCommandSnippet
@@ -184,14 +182,6 @@ module Fastlane
184
182
  # default_value: false) # the default value if the user didn't provide one
185
183
  end),
186
184
 
187
- FastlaneCore::ConfigItem.new(key: :bundleName,
188
- env_name: "FL_UPLOAD_TO_DYNATRACE_BUNDLE_NAME",
189
- description: "The CFBundleName of the Application (iOS only)",
190
- sensitive: false,
191
- verify_block: proc do |value|
192
- UI.user_error!("Please provide the bundleName for your app. Pass using `bundleName: 'bundleName'`") unless (value and not value.empty?)
193
- end),
194
-
195
185
  FastlaneCore::ConfigItem.new(key: :versionStr,
196
186
  env_name: "FL_UPLOAD_TO_DYNATRACE_VERSION_STRING",
197
187
  description: "The CFBundleShortVersionString (iOS) / versionName (Android)",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Dynatrace
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
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.2
4
+ version: 0.1.3
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-25 00:00:00.000000000 Z
11
+ date: 2019-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -137,7 +137,7 @@ dependencies:
137
137
  - !ruby/object:Gem::Version
138
138
  version: 2.119.0
139
139
  description:
140
- email: mohamedanassar@gmail.com
140
+ email: mohamed.nassar@dynatrace.com
141
141
  executables: []
142
142
  extensions: []
143
143
  extra_rdoc_files: []
@@ -148,7 +148,7 @@ files:
148
148
  - lib/fastlane/plugin/dynatrace/actions/dynatrace_action.rb
149
149
  - lib/fastlane/plugin/dynatrace/helper/dynatrace_helper.rb
150
150
  - lib/fastlane/plugin/dynatrace/version.rb
151
- homepage: https://github.com/MANassar/fastlane-plugin-dynatrace
151
+ homepage: https://github.com/Dynatrace/fastlane-plugin-dynatrace
152
152
  licenses:
153
153
  - MIT
154
154
  metadata: {}