cocoapods-bugsnag 2.2.1 → 2.2.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +3 -0
- data/cocoapods-bugsnag.gemspec +1 -1
- data/lib/cocoapods_bugsnag.rb +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e5d8c650540e96f7ad51cbae072b074762bdfb8d1bb2552dad68763fec1d0e3
|
|
4
|
+
data.tar.gz: 4c8c98a9e980e8c1b7fdf86a9119134ea84052ce7375d0ab25c276c32e84734c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/)
|
data/cocoapods-bugsnag.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "cocoapods-bugsnag"
|
|
3
|
-
spec.version = "2.2.
|
|
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."
|
data/lib/cocoapods_bugsnag.rb
CHANGED
|
@@ -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.
|
|
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:
|
|
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
|