forked from LeoMobileDeveloper/PullToRefreshKit
-
Notifications
You must be signed in to change notification settings - Fork 0
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.8.6'
s.summary = 'A refresh library written with pure Swift 4'
s.description = <<-DESC
This is a pull to refresh library written by pure Swift 4. 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/LeoMobileDeveloper/PullToRefreshKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Leo' => 'leomobiledeveloper@gmail.com' }
s.source = { :git => 'https://github.com/LeoMobileDeveloper/PullToRefreshKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/Classes/**/*'
s.resources = 'Source/Assets/**/*'
end