-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMimirMemoryLogger.podspec
More file actions
19 lines (17 loc) · 1.17 KB
/
MimirMemoryLogger.podspec
File metadata and controls
19 lines (17 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'MimirMemoryLogger'
s.version = '0.3.0'
s.summary = 'MimirMemoryLogger is a framework that takes snapshots of the iOS device`s heap and logs them to disk for later debugging.'
s.description = <<-DESC
MimirMemoryLogger is a framework that takes snapshots of the iOS device's heap and logs them to disk for later debugging. This was created to make debugging memory issues easier when the device is not connected to Xcode.
The snapshot json files can be used by a python script included in this repo's github page that prettifies the results and sorts memory instances accordingly.
DESC
s.homepage = 'https://github.com/amereid/MimirMemoryLogger'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'amereid' => 'amereid92@gmail.com' }
s.source = { :git => 'https://github.com/amereid/MimirMemoryLogger.git', :tag => s.version.to_s }
s.swift_versions = '5.0'
s.ios.deployment_target = '10.0'
s.source_files = 'MimirMemoryLogger/Classes/**/*'
end