-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from WideSpectrumComputing/master
Implemented new RollbarPLCrashReporter module
- Loading branch information
Showing
28 changed files
with
468 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# RollbarCommon | ||
|
||
This is an SDK module declaring protocols and implementing classes/types commonly used across the other SDK modules. | ||
This is an SDK module declaring abstractions/concepts (protocols, abstract classes, etc.) and implementing classes/types commonly used across the other SDK modules. | ||
|
||
If any data type is used by more than one SDK module - place it here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# RollbarKSCrash | ||
|
||
This is an SDK module implementing integration with [KSCrash reporter](https://github.com/kstenerud/KSCrash). | ||
This is an SDK module implements a RollbarCrashCollector based on the [KSCrash reporter](https://github.com/kstenerud/KSCrash). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# | ||
# Be sure to run `pod spec lint RollbarPLCrashReporter.podspec' to ensure this is a valid spec. | ||
# | ||
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html | ||
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
|
||
s.version = "2.0.0-alpha28" | ||
s.name = "RollbarPLCrashReporter" | ||
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.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
# s.license = "MIT (example)" | ||
s.documentation_url = "https://docs.rollbar.com/docs/ios" | ||
s.authors = { "Andrey Kornich (Wide Spectrum Computing LLC)" => "[email protected]", | ||
"Rollbar" => "[email protected]" } | ||
# s.author = { "Andrey Kornich" => "[email protected]" } | ||
# Or just: s.author = "Andrey Kornich" | ||
s.social_media_url = "http://twitter.com/rollbar" | ||
s.source = { :git => "https://github.com/rollbar/rollbar-apple.git", | ||
:tag => "v#{s.version}" | ||
} | ||
s.resource = "rollbar-logo.png" | ||
# s.resources = "Resources/*.png" | ||
|
||
# When using multiple platforms: | ||
s.ios.deployment_target = "9.0" | ||
s.osx.deployment_target = "10.10" | ||
s.tvos.deployment_target = "11.0" | ||
s.watchos.deployment_target = "4.0" | ||
# Any platform, if omitted: | ||
# s.platform = :ios | ||
# s.platform = :ios, "5.0" | ||
|
||
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.exclude_files = "Classes/Exclude" | ||
# s.preserve_paths = "FilesToSave", "MoreFilesToSave" | ||
|
||
s.framework = "Foundation" | ||
s.dependency "RollbarCommon", "~> #{s.version}" | ||
s.dependency "PLCrashReporter", "~> 1.8.1" | ||
# s.frameworks = "SomeFramework", "AnotherFramework" | ||
# s.library = "iconv" | ||
# s.libraries = "iconv", "xml2" | ||
# s.dependency "JSONKit", "~> 1.4" | ||
|
||
s.requires_arc = true | ||
# s.xcconfig = { | ||
# "USE_HEADERMAP" => "NO", | ||
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**" | ||
# } | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.DS_Store | ||
/.build | ||
/Packages | ||
/*.xcodeproj | ||
xcuserdata/ |
77 changes: 77 additions & 0 deletions
77
RollbarPLCrashReporter/.swiftpm/xcode/xcshareddata/xcschemes/RollbarPLCrashReporter.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "1230" | ||
version = "1.3"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "RollbarPLCrashReporter" | ||
BuildableName = "RollbarPLCrashReporter" | ||
BlueprintName = "RollbarPLCrashReporter" | ||
ReferencedContainer = "container:"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES"> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "RollbarPLCrashReporterTests" | ||
BuildableName = "RollbarPLCrashReporterTests" | ||
BlueprintName = "RollbarPLCrashReporterTests" | ||
ReferencedContainer = "container:"> | ||
</BuildableReference> | ||
</TestableReference> | ||
</Testables> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "RollbarPLCrashReporter" | ||
BuildableName = "RollbarPLCrashReporter" | ||
BlueprintName = "RollbarPLCrashReporter" | ||
ReferencedContainer = "container:"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
Oops, something went wrong.