Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emergetools/reaper
A tool for detecting unused code
https://github.com/emergetools/reaper
Last synced: about 2 months ago
JSON representation
A tool for detecting unused code
- Host: GitHub
- URL: https://github.com/emergetools/reaper
- Owner: EmergeTools
- License: mit
- Created: 2022-06-07T14:23:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T17:05:17.000Z (4 months ago)
- Last Synced: 2024-09-16T20:51:36.272Z (4 months ago)
- Language: Ruby
- Size: 164 KB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reaper
A framework for detecting dead code at runtime. Read more about it in the [launch blog post](https://www.emergetools.com/blog/posts/dead-code-detection-with-reaper).
## Installation
### Swift Package Manager
Add Reaper as a dependency with Swift package manager using the URL https://github.com/EmergeTools/Reaper
### CocoaPods
Add Reaper to your Podfile:
```Ruby
target 'MyApp' do
pod 'Reaper', '~> 1.4'
end
```### XCFramework
Download the latest XCFramework from [Github releases](https://github.com/EmergeTools/Reaper/releases).
## Setup
Start the SDK at app launch by adding the following code:
```Swift
import Reaper...
EMGReaper.sharedInstance().start(withAPIKey: "myKey") // The key is provided to you by Emerge
```More details can be found in the [docs](https://docs.emergetools.com/docs/reaper).