fastlane-plugin-bugsnag 2.2.0 → 2.2.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: 57b215435ee483ac067b8476b40366d4040791e56311709e1e73533f356a0658
4
- data.tar.gz: 27f72d72fff57102bc787434b2b06dc5272b7001877d4993e99122fd15a1c5d7
3
+ metadata.gz: 9db2dd9937b3d36dfd9e9ec8d8d49e22e9fc5bb4e9450adcbc0b76dfa301ebee
4
+ data.tar.gz: 87dc97643eaa14270da1eda4fe8d8028f24bccc60afc1180e9490bc7a51a2d1b
5
5
  SHA512:
6
- metadata.gz: 7ca750f77a93d83b0d786eff7e99a843551bdd4a59ee0585dfe83f2239c777381b33188810844ca1a227cc7e3fd489f90712cf470ab2ad19bc0c05a515caf757
7
- data.tar.gz: a819e53c15fa5cfa35da10d4021535b91b5b52eddc56b0a22bb86f8c77ac0c21e2abc46b83d3d5ccad33cf0864ec2bc71aab97a50777058c2177e717a12968ee
6
+ metadata.gz: 3cef53d8d700b3ead9b320c57df1616c3bd5d3f8b349e9cec806b7dda5a3449be146b2eebf3983acc2e6e6011c721752d386c830efc8a639f8c112c32b037052
7
+ data.tar.gz: 3c44e6932d491420bcf7a715f3d3d91bfadeae5bd48bea179085f02a4b87539ae1d33f731f28bed061dd8512b1cba82e489b0caf1150acff71ffc699a6f24ba7
@@ -185,8 +185,8 @@ module Fastlane
185
185
  # returns true if `gym` created some dSYMs for us to upload
186
186
  # https://docs.fastlane.tools/actions/gym/#lane-variables
187
187
  def self.gym_dsyms?
188
- if defined?(SharedValues::DSYM_PATHS)
189
- if Actions.lane_context[SharedValues::DSYM_PATHS]
188
+ if defined?(SharedValues::DSYM_OUTPUT_PATH)
189
+ if Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH]
190
190
  true
191
191
  end
192
192
  end
@@ -195,8 +195,8 @@ module Fastlane
195
195
  # returns true if `download_dsyms` created some dSYMs for us to upload
196
196
  # https://docs.fastlane.tools/actions/download_dsyms/#lane-variables
197
197
  def self.download_dsym_dsyms?
198
- if defined?(SharedValues::DSYM_OUTPUT_PATH)
199
- if Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH]
198
+ if defined?(SharedValues::DSYM_PATHS)
199
+ if Actions.lane_context[SharedValues::DSYM_PATHS]
200
200
  true
201
201
  end
202
202
  end
@@ -205,8 +205,8 @@ module Fastlane
205
205
  def self.default_dsym_paths
206
206
  vendor_regex = %r{\.\/vendor.*}
207
207
  paths = Dir["./**/*.dSYM.zip"].reject{|f| f[vendor_regex] } + Dir["./**/*.dSYM"].reject{|f| f[vendor_regex] } # scrape the sub directories for zips and dSYMs
208
- paths += coerce_array(Actions.lane_context[SharedValues::DSYM_PATHS]) if gym_dsyms? # set by `download_dsyms` Fastlane action
209
- paths += coerce_array(Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH]) if download_dsym_dsyms? # set by `gym` Fastlane action
208
+ paths += coerce_array(Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH]) if gym_dsyms? # set by `gym` Fastlane action
209
+ paths += coerce_array(Actions.lane_context[SharedValues::DSYM_PATHS]) if download_dsym_dsyms? # set by `download_dsyms` Fastlane action
210
210
  parse_dsym_paths(paths.uniq)
211
211
  end
212
212
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Bugsnag
3
- VERSION = "2.2.0"
3
+ VERSION = "2.2.1"
4
4
  end
5
5
  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: 2.2.0
4
+ version: 2.2.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: 2021-09-15 00:00:00.000000000 Z
11
+ date: 2022-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xml-simple