-
Notifications
You must be signed in to change notification settings - Fork 89
/
Airbrake-iOS.podspec
32 lines (18 loc) · 1.15 KB
/
Airbrake-iOS.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
Pod::Spec.new do |s|
s.name = "Airbrake-iOS"
s.version = "4.2.8"
s.summary = "An Airbrake Notifier for iOS"
s.description = <<-DESC
The Airbrake iOS Notifier is designed to give developers instant notification of problems that occur in their apps. With just a few lines of code and a few extra files in your project, your app will automatically phone home whenever a crash or exception is encountered. These reports go straight to Airbrake where you can see information like backtrace, device type, app version, and more.
DESC
s.homepage = "https://airbrake.io/languages/ios_bug_tracker"
s.license = "MIT"
s.author = "Jocelyn Harrington"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/airbrake/airbrake-ios.git", :tag => "4.2.8" }
s.source_files = "Airbrake/{notifier,gcalertview}/*.{h,m}", "Airbrake/CrashReporter.framework/Versions/A/Headers/*.h"
s.resources = "Airbrake/notifier/ABNotifier.bundle"
s.framework = "SystemConfiguration"
s.ios.vendored_frameworks = "Airbrake/CrashReporter.framework"
s.requires_arc = true
end