Skip to content

Commit

Permalink
Merge pull request #60 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
 Fix: RollbarSwift.podspec
  • Loading branch information
akornich authored Mar 18, 2021
2 parents 75a645d + 6f25fba commit 469383c
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

**2.0.0-beta7**
**2.0.0-beta6**
**2.0.0-beta5**
**2.0.0-beta4**
Expand Down
2 changes: 1 addition & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarCommon"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarDeploys.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarDeploys"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarKSCrash.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarKSCrash"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarNotifier.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarNotifier"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"2.0.0-beta6";
static NSString * const NOTIFIER_VERSION = @"2.0.0-beta7";

static NSString * const NOTIFIER_NAME = @"rollbar-apple";

Expand Down
2 changes: 1 addition & 1 deletion RollbarPLCrashReporter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarPLCrashReporter"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarSDK.experimental_podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |sdk|

# Rollbar SDK:
# ============
sdk.version = "2.0.0-beta6"
sdk.version = "2.0.0-beta7"
sdk.name = "RollbarSDK"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
sdk.description = <<-DESC
Expand Down
10 changes: 5 additions & 5 deletions RollbarSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.0-beta6"
s.version = "2.0.0-beta7"
s.name = "RollbarSwift"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down Expand Up @@ -56,10 +56,10 @@ Pod::Spec.new do |s|
# s.dependency "JSONKit", "~> 1.4"

s.requires_arc = true
# s.xcconfig = {
# "USE_HEADERMAP" => "NO",
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
# }
s.xcconfig = {
"USE_HEADERMAP" => "NO",
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/#{s.name}/#{s.name}/Sources/#{s.name}/**"
}

s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
Expand Down
4 changes: 2 additions & 2 deletions RollbarSwift/Sources/RollbarSwift/RollbarExceptionGuard.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ -(BOOL)execute:(nonnull void(NS_NOESCAPE^)(void))tryBlock
[self->logger log:RollbarLevel_Critical
exception:exception
data:nil
context:RollbarExceptionGuard.className
context:NSStringFromClass([self class])
];

[self->logger log:RollbarLevel_Critical
error:exceptionError
data:nil
context:RollbarExceptionGuard.className
context:NSStringFromClass([self class])
];
}

Expand Down

0 comments on commit 469383c

Please sign in to comment.