forked from DebugSwift/DebugSwift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDebugSwift.podspec
22 lines (20 loc) · 1.05 KB
/
DebugSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'DebugSwift'
s.version = '0.2.2'
s.summary = 'A robust toolkit for simplifying and enhancing the debugging process in Swift applications.'
s.description = <<-DESC
DebugSwift is a comprehensive toolkit designed to streamline and elevate the debugging experience for Swift-based applications. Whether you are troubleshooting issues or optimizing performance, DebugSwift offers a powerful set of features to make your debugging process more efficient and effective.
DESC
s.homepage = 'https://github.com/DebugSwift/DebugSwift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Matheus Gois' => '[email protected]' }
s.source = { :git => 'https://github.com/DebugSwift/DebugSwift.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.7'
s.source_files = 'DebugSwift/Sources/**/*'
s.resource_bundles = {
'DebugSwift' => [
'DebugSwift/Resources/*.lproj/*.strings',
]
}
end