-
Notifications
You must be signed in to change notification settings - Fork 17
/
RollbarAUL.podspec
36 lines (32 loc) · 1.54 KB
/
RollbarAUL.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "RollbarAUL"
s.version = "3.3.3"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Easily send error data using Rollbar API.
Analyze, de-dupe, send alerts, and prepare the data for further analysis.
Search, sort, and prioritize via the Rollbar dashboard.
DESC
s.homepage = "https://rollbar.com"
s.resource = "rollbar-logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Rollbar" => "support@rollbar.com" }
s.source = { :git => "https://github.com/rollbar/rollbar-apple.git",
:tag => s.version.to_s }
s.documentation_url = "https://docs.rollbar.com/docs/apple"
s.social_media_url = "https://twitter.com/rollbar"
s.osx.deployment_target = "10.13"
s.source_files = "#{s.name}/Sources/#{s.name}/**/*.{h,m}"
s.public_header_files = "#{s.name}/Sources/#{s.name}/include/*.h"
s.module_map = "#{s.name}/Sources/#{s.name}/include/module.modulemap"
s.framework = "Foundation"
s.dependency "RollbarCommon", "~> #{s.version}"
s.dependency "RollbarNotifier", "~> #{s.version}"
s.swift_versions = "5.5"
s.requires_arc = true
s.xcconfig = {
"USE_HEADERMAP" => "NO",
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/#{s.name}/#{s.name}/Sources/#{s.name}/**"
}
end