-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneralToolsFramework.podspec
54 lines (45 loc) · 2.3 KB
/
GeneralToolsFramework.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# Be sure to run `pod lib lint GeneralToolsFramework.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'GeneralToolsFramework'
s.version = '1.26.1'
s.summary = 'Contains general tools used in my iOS apps.'
# 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
I, Zandor Smith, use a general set of classes in all of my iOS apps. Because I use these classes all the time, I decided to write my own Cocoapod with all these classes.
DESC
s.homepage = 'https://git.zsinfo.nl/Zandor300/GeneralToolsFramework'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Zandor Smith' => '[email protected]' }
s.source = { :git => 'https://git.zsinfo.nl/Zandor300/GeneralToolsFramework.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'
s.swift_version = '5.0'
s.ios.source_files = 'GeneralToolsFramework/Classes/Common/**/*', 'GeneralToolsFramework/Classes/iOS/**/*'
s.tvos.source_files = 'GeneralToolsFramework/Classes/Common/**/*'
s.watchos.source_files = 'GeneralToolsFramework/Classes/Common/**/*'
# s.resource_bundles = {
# 'GeneralToolsFramework' => ['GeneralToolsFramework/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.ios.frameworks = 'UIKit', 'Security'
s.tvos.frameworks = 'Security'
s.watchos.frameworks = 'Security'
s.dependency 'ZSPINCache', '~> 3.1.2'
s.ios.dependency 'ZSConnectivity', '~> 8.0'
s.tvos.dependency 'ZSConnectivity', '~> 8.0'
s.ios.dependency 'ZSPickerView', '~> 1.4'
end