-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSurfingRefreshControl.podspec
More file actions
16 lines (16 loc) · 967 Bytes
/
SurfingRefreshControl.podspec
File metadata and controls
16 lines (16 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SurfingRefreshControl"
s.version = "1.0"
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = "Customizable pull-to-refresh control,written in pure Swift"
s.homepage = "https://github.com/peiweichen/SurfingRefreshControl"
s.author = { "Peiwei" => "peiwei233@gmail.com" }
s.source = { :git => "https://github.com/peiweichen/SurfingRefreshControl.git", :tag => s.version }
s.source_files = 'SurfingRefreshControl'
s.description = <<-DESC
This project is heavily inspired by CBStoreHouseRefreshControl which is Objective-C implemented. SurfingRefreshControl provides you a chance to use pure Swift alternative in your next app.
DESC
s.platform = :ios, '7.0'
s.screenshots = "http://peiweichen.github.io/outofwebsite/gif/surfing.gif", "http://peiweichen.github.io/outofwebsite/gif/storehouse.gif"
s.requires_arc = true
end