fastlane-plugin-bugsnag 1.4.0 → 1.4.1
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: c06bc54bec2c72f2ca7bffa7b9b8416a43f3c642b2194fcb0136d5047d50f0b5
|
|
4
|
+
data.tar.gz: 217591d18508cce3ba230c55a04f5440a9987765bac3d08bc73783618ad2c52a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccfa0fa909ab1fe8aae3f63002e1227d23c88ff23ef51ef89c1212cf9276e30113e60dec26507295349b51c9fccaef63c816888ea6c34d5021849b8ede6e045f
|
|
7
|
+
data.tar.gz: 9574afd7ee424559a64d2ea8d27633fb7ceaffa16bd9d1e5d5dc7501e35da4b963a1a2c3d80de73e7ddf3caee015146029b00aeeff284bda857f1470878e5e20
|
|
@@ -158,7 +158,8 @@ module Fastlane
|
|
|
158
158
|
path = Dir["./**/*.dSYM.zip"] + Dir["./**/*.dSYM"]
|
|
159
159
|
dsym_paths = Actions.lane_context[SharedValues::DSYM_PATHS] if defined? SharedValues::DSYM_PATHS
|
|
160
160
|
dsyms_output_path = Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH] if defined? SharedValues::DSYM_OUTPUT_PATH
|
|
161
|
-
dsyms_output_path || dsym_paths || path
|
|
161
|
+
default_value = dsyms_output_path || dsym_paths || path
|
|
162
|
+
parse_dsym_paths(default_value)
|
|
162
163
|
end
|
|
163
164
|
end
|
|
164
165
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-bugsnag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Delisa Mason
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xml-simple
|
|
@@ -173,17 +173,17 @@ signing_key:
|
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: Uploads dSYM files to Bugsnag
|
|
175
175
|
test_files:
|
|
176
|
+
- spec/spec_helper.rb
|
|
176
177
|
- spec/bugsnag_upload_dsym_action_spec.rb
|
|
178
|
+
- spec/send_build_to_bugsnag_spec.rb
|
|
179
|
+
- spec/fixtures/more_files.zip
|
|
177
180
|
- spec/fixtures/BCSymbolMaps/real.bcsymbolmap
|
|
178
|
-
- spec/fixtures/dSYMs/app.dSYM/Contents/Resources/DWARF/app
|
|
179
|
-
- spec/fixtures/dSYMs/app2.dSYM/Contents/Resources/DWARF/app2
|
|
180
|
-
- spec/fixtures/files.zip
|
|
181
|
-
- spec/fixtures/invalid_file
|
|
182
|
-
- spec/fixtures/ios_proj/aaTests/Info.plist
|
|
183
181
|
- spec/fixtures/ios_proj/FirstRealFolder/Info.plist
|
|
182
|
+
- spec/fixtures/ios_proj/aaTests/Info.plist
|
|
184
183
|
- spec/fixtures/ios_proj/Project/Info.plist
|
|
185
|
-
- spec/fixtures/more_files.zip
|
|
186
|
-
- spec/fixtures/stuff/app.dSYM/Contents/Resources/DWARF/app
|
|
187
184
|
- spec/fixtures/stuff/app2.dSYM/Contents/Resources/DWARF/app2
|
|
188
|
-
- spec/
|
|
189
|
-
- spec/
|
|
185
|
+
- spec/fixtures/stuff/app.dSYM/Contents/Resources/DWARF/app
|
|
186
|
+
- spec/fixtures/invalid_file
|
|
187
|
+
- spec/fixtures/files.zip
|
|
188
|
+
- spec/fixtures/dSYMs/app2.dSYM/Contents/Resources/DWARF/app2
|
|
189
|
+
- spec/fixtures/dSYMs/app.dSYM/Contents/Resources/DWARF/app
|