forked from LeoMobileDeveloper/PullToRefreshKit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPullToRefreshKit.podspec
More file actions
24 lines (22 loc) · 1.16 KB
/
PullToRefreshKit.podspec
File metadata and controls
24 lines (22 loc) · 1.16 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
#
# Be sure to run `pod lib lint PullToRefreshKit.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 = 'PullToRefreshKit'
s.version = '0.9.0'
s.summary = 'Fix refreshing state issue'
s.description = <<-DESC
This is a pull to refresh library written by pure Swift 5. Using it you can add pull to refresh, pull to load more, pull left/right to view details within one line. Besides, it is quite easy to write a custom refresh view when using this lib.
DESC
s.homepage = 'https://github.com/Heartkage/PullToRefreshKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/Heartkage/PullToRefreshKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Sources/PullToRefreshKit/Classes/**/*'
s.resources = 'Sources/PullToRefreshKit/Assets/**/*'
end