-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFanRefresh.podspec
73 lines (50 loc) · 2.15 KB
/
FanRefresh.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
# Be sure to run `pod spec lint FanKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "FanRefresh"
s.version = "1.0.0"
s.summary = "A swift Refresh control ."
s.description = <<-DESC
一个swift 的刷新控件,下拉刷新,上拉加载,UITableView,UICollectionView,UIWebView
DESC
s.homepage = "https://github.com/fanxiangyang/FanRefresh"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "fanxiangyang" => "fqsyfan@gmail.com" }
# s.social_media_url = "http://twitter.com/fanxiangyang"
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/fanxiangyang/FanRefresh.git", :tag => s.version.to_s }
s.source_files = "Classes/*.swift"
#s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/FanKit.h","Classes/FanKitHead.h"
# s.resources = "icon.png"
s.resources = "Classes/FanRefresh.bundle"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.frameworks = "UIKit", "Foundation", "ImageIO"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
# s.subspec 'Refresh' do |ss|
# ss.source_files = "Classes/Refresh/*.swift"
# ss.frameworks = "UIKit", "Foundation"
# end
# s.subspec 'Header' do |ss|
# ss.source_files = 'Classes/Header/*.swift'
# ss.frameworks = "UIKit","Foundation"
# end
# s.subspec 'Footer' do |ss|
# ss.source_files = 'Classes/Footer/*.swift'
# ss.frameworks = "UIKit","Foundation"
# end
end