cocoapods-bugsnag 2.2.1 → 2.2.2

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: e60881092085623bd9218d8c7e08be44e3580d8ee2c11ea0a987d6a3d6853cc5
4
- data.tar.gz: 12d938efbbeca703eaee0d8116a7494a74a534b2bd321f49e9ecbdd5c5ad6084
3
+ metadata.gz: 9e5d8c650540e96f7ad51cbae072b074762bdfb8d1bb2552dad68763fec1d0e3
4
+ data.tar.gz: 4c8c98a9e980e8c1b7fdf86a9119134ea84052ce7375d0ab25c276c32e84734c
5
5
  SHA512:
6
- metadata.gz: c3e2c2541c4d531cc1331c2a923a6f0c8c2b0bce74099fb9454de34247bc5dd01ad5ec605202e339c6a3150497b1934ad3c70d8232d22bdfe2f6aa5ee167c231
7
- data.tar.gz: bf2af0466ab94413a969861b6e91891bc513b2c349fcc733d8ec5b10bf257f6bbc5384007f39bde4cab4e4e636f3d196874eee188bff2f0813729f2b239d1b0e
6
+ metadata.gz: 5ee6032be77a768e5fc2230005a2a84c26fbb26e61d025f805b1491b63dca26a6b47e41bb560e1e0305ae407b6d215043aa7e2af2cd3ddece1cbf63086696270
7
+ data.tar.gz: 0040e50681ec86f21aad3fac88bb661701de9696afe426ca491e0807a646bbea306381eadfac377443f7a742145233cbed3dc043e589b31c77062853f7dc710b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.2.2 (17 May 2022)
4
+
5
+ ### Enhancements
6
+
7
+ * Uploading can now be skipped by setting `DISABLE_COCOAPODS_BUGSNAG=YES` via Xcode's Build Settings, `xcconfig` or `xcodebuild`.
8
+ | [#25](https://github.com/bugsnag/cocoapods-bugsnag/pull/25)
9
+
3
10
  ## 2.2.1 (20 Nov 2020)
4
11
 
5
12
  ### Bug fixes
data/README.md CHANGED
@@ -44,6 +44,9 @@ environment variable or from the `:bugsnag:apiKey` (or `BugsnagAPIKey`) value in
44
44
  `Info.plist`. Alternatively edit the script in the new "Upload Bugsnag dSYM" build
45
45
  phase in Xcode.
46
46
 
47
+ Uploading can be disabled by setting `DISABLE_COCOAPODS_BUGSNAG=YES` in Xcode's
48
+ Build Settings or an `xcconfig` file, or as an argument to `xcodebuild`.
49
+
47
50
  ## Support
48
51
 
49
52
  * [Symbolication guide](https://docs.bugsnag.com/platforms/ios/symbolication-guide/)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "cocoapods-bugsnag"
3
- spec.version = "2.2.1"
3
+ spec.version = "2.2.2"
4
4
  spec.homepage = "https://bugsnag.com"
5
5
  spec.description = "Configures the dSYM upload phase of your project when integrated with bugsnag."
6
6
  spec.summary = "To get meaningful stacktraces from your crashes, the Bugsnag service needs your dSYM file for your build. This plugin adds an upload phase to your project where needed."
@@ -7,6 +7,12 @@ module Pod
7
7
  "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}"]
8
8
  BUGSNAG_PHASE_SHELL_PATH = "/usr/bin/env ruby"
9
9
  BUGSNAG_PHASE_SCRIPT = <<'RUBY'
10
+ # Set DISABLE_COCOAPODS_BUGSNAG=YES via Xcode's Build Settings, xcconfig or xcodebuild to skip upload
11
+ if ENV['DISABLE_COCOAPODS_BUGSNAG'] == 'YES'
12
+ p 'Skipping dSYM upload'
13
+ return
14
+ end
15
+
10
16
  api_key = nil # Insert your key here to use it directly from this script
11
17
 
12
18
  # Attempt to get the API key from an environment variable
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delisa Mason
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-20 00:00:00.000000000 Z
11
+ date: 2022-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.0.3
90
+ rubygems_version: 3.0.3.1
91
91
  signing_key:
92
92
  specification_version: 4
93
93
  summary: To get meaningful stacktraces from your crashes, the Bugsnag service needs