-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoadControl.podspec
More file actions
30 lines (22 loc) · 1.22 KB
/
LoadControl.podspec
File metadata and controls
30 lines (22 loc) · 1.22 KB
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
Pod::Spec.new do |s|
s.name = 'LoadControl'
s.version = '1.0.0'
s.summary = 'A standard control that can initiate the loading of a scroll view’s contents.'
s.author = { 'verny-tran' => 'verny-tran@icloud.com' }
s.social_media_url = 'https://github.com/verny-tran'
s.homepage = 'https://github.com/verny-tran/LoadControl'
s.screenshots = 'github.com/verny-tran/LoadControl/blob/main/Resources/Images/Refresh.gif', 'github.com/verny-tran/LoadControl/blob/main/Resources/Images/Load.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.readme = 'https://github.com/verny-tran/LoadControl/blob/main/README.md'
s.source = { :git => 'https://github.com/verny-tran/LoadControl.git', :tag => 'v1.0.0' }
s.source_files = 'LoadControl/**/*'
s.swift_versions = ['5.0']
s.ios.deployment_target = '13.0'
s.ios.framework = 'UIKit'
# s.resource_bundles = {
# '${POD_NAME}' => ['${POD_NAME}/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end