Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 2774b37

Browse files
authored
Merge pull request #330 from WideSpectrumComputing/ref#285-MultiprojectWorkspace
in preparation for v2.0.0-alpha23
2 parents 220e39e + 1d233f9 commit 2774b37

File tree

6 files changed

+30
-31
lines changed

6 files changed

+30
-31
lines changed

RollbarCommon.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.0.0-alpha22"
10+
s.version = "2.0.0-alpha23"
1111
s.name = "RollbarCommon"
1212
s.summary = "Application or client side SDK for accessing the Rollbar API Server."
1313
s.description = <<-DESC

RollbarDeploys.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.0.0-alpha22"
10+
s.version = "2.0.0-alpha23"
1111
s.name = "RollbarDeploys"
1212
s.summary = "Application or client side SDK for accessing the Rollbar API Server."
1313
s.description = <<-DESC

RollbarKSCrash.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.0.0-alpha22"
10+
s.version = "2.0.0-alpha23"
1111
s.name = "RollbarKSCrash"
1212
s.summary = "Application or client side SDK for accessing the Rollbar API Server."
1313
s.description = <<-DESC

RollbarNotifier.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Pod::Spec.new do |s|
99

10-
s.version = "2.0.0-alpha22"
10+
s.version = "2.0.0-alpha23"
1111
s.name = "RollbarNotifier"
1212
s.summary = "Application or client side SDK for accessing the Rollbar API Server."
1313
s.description = <<-DESC

RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#pragma mark - constants
2424

25-
static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha22";
25+
static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha23";
2626

2727
static NSString * const NOTIFIER_NAME = @"rollbar-*os";
2828

RollbarSDK.podspec

+25-26
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |sdk|
99

1010
# Rollbar SDK:
1111
# ============
12-
sdk.version = "2.0.0-alpha22"
12+
sdk.version = "2.0.0-alpha23"
1313
sdk.name = "RollbarSDK"
1414
sdk.summary = "Application or client side SDK for accessing the Rollbar API Server."
1515
sdk.description = <<-DESC
@@ -147,36 +147,35 @@ Pod::Spec.new do |sdk|
147147
# RollbarKSCrash module:
148148
# =====================
149149
sdk.subspec "RollbarKSCrash" do |kscrash|
150-
notifier.name = "RollbarKSCrash"
150+
kscrash.name = "RollbarKSCrash"
151151

152152
# Any platform, if omitted:
153-
# notifier.platform = :ios
154-
# notifier.platform = :ios, "5.0"
153+
# kscrash.platform = :ios
154+
# kscrash.platform = :ios, "5.0"
155155

156156
# When using multiple platforms:
157-
# notifier.ios.deployment_target = "9.0"
158-
# notifier.osx.deployment_target = "10.10"
159-
# notifier.tvos.deployment_target = "11.0"
160-
# notifier.watchos.deployment_target = "4.0"
161-
162-
notifier.source_files = "RollbarNotifier/Sources/RollbarKSCrash/**/*.{h,m}"
163-
# notifier.exclude_files = "Classes/Exclude"
164-
notifier.public_header_files = "RollbarNotifier/Sources/RollbarKSCrash/include/*.h"
165-
# notifier.module_map = "RollbarNotifier/Sources/RollbarKSCrash/include/module.modulemap"
166-
# notifier.resource = "../rollbar-logo.png"
167-
# notifier.resources = "Resources/*.png"
168-
# notifier.preserve_paths = "FilesToSave", "MoreFilesToSave"
169-
170-
notifier.dependency "RollbarSDK/RollbarCommon"
171-
notifier.framework = "Foundation"
172-
# notifier.frameworks = "SomeFramework", "AnotherFramework"
173-
# notifier.library = "iconv"
174-
# notifier.libraries = "iconv", "xml2"
175-
# notifier.dependency "JSONKit", "~> 1.4"
176-
notifier.requires_arc = true
177-
# notifier.xcconfig = {
157+
# kscrash.ios.deployment_target = "9.0"
158+
# kscrash.osx.deployment_target = "10.10"
159+
# kscrash.tvos.deployment_target = "11.0"
160+
# kscrash.watchos.deployment_target = "4.0"
161+
162+
kscrash.source_files = "#{kscrash.name}/Sources/#{kscrash.name}/**/*.{h,m}"
163+
# kscrash.exclude_files = "Classes/Exclude"
164+
kscrash.public_header_files = "#{kscrash.name}/Sources/#{kscrash.name}/include/*.h"
165+
# kscrash.module_map = "#{kscrash.name}/Sources/#{kscrash.name}/include/module.modulemap"
166+
# kscrash.resource = "../rollbar-logo.png"
167+
# kscrash.resources = "Resources/*.png"
168+
# kscrash.preserve_paths = "FilesToSave", "MoreFilesToSave"
169+
170+
kscrash.dependency "RollbarSDK/RollbarCommon"
171+
kscrash.framework = "Foundation"
172+
# kscrash.frameworks = "SomeFramework", "AnotherFramework"
173+
# kscrash.library = "iconv"
174+
# kscrash.dependency "JSONKit", "~> 1.4"
175+
kscrash.requires_arc = true
176+
# kscrash.xcconfig = {
178177
# "USE_HEADERMAP" => "NO",
179-
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/RollbarNotifier/**"
178+
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{kscrash.name}/**"
180179
# }
181180
end
182181

0 commit comments

Comments
 (0)