forked from dbukowski/DBDebugToolkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
DBDebugToolkit.podspec
38 lines (32 loc) · 2.41 KB
/
DBDebugToolkit.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
33
34
35
36
37
38
#
# Be sure to run `pod lib lint DBDebugToolkit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DBDebugToolkit'
s.version = '0.8.0'
s.summary = 'Set of easy to use debugging tools for iOS developers & QA engineers.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
DBDebugToolkit is a library written with two goals in mind: providing as many easily accessible debugging tools as possible and keeping the integration process seamless in all your projects. It all started with the lack of possibility to check the version and build number of the build you have installed on your phone. Then, after experiencing many inconveniences during developing and testing iOS software, it evolved into a powerful tool providing such important features like measuring your application performance, showing view frames, slowing down animations, showing touches, presenting requests sent by your application, browsing files, keychain, user defaults, Core Data and cookies, displaying console output, simulating location and many, many more.
DESC
s.homepage = 'https://github.com/dbukowski/DBDebugToolkit'
s.screenshots = 'http://i.imgur.com/9IENbX4.png', 'http://i.imgur.com/jylD3PI.png', 'http://i.imgur.com/EOCIlgB.png', 'http://i.imgur.com/Ip1rPbJ.png', 'http://i.imgur.com/Cm8XpsQ.png', 'http://i.imgur.com/bfLB1uM.png', 'http://i.imgur.com/dQIwSce.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dariusz Bukowski' => '[email protected]' }
s.source = { :git => 'https://github.com/dbukowski/DBDebugToolkit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/darekbukowski'
s.source_files = 'DBDebugToolkit/Classes/**/*'
s.ios.deployment_target = '13.0'
s.swift_version = '5.4'
s.resource_bundles = {
'DBDebugToolkit' => ['DBDebugToolkit/Resources/*.{storyboard,xib,bundle}']
}
end