-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSRefresh.podspec
More file actions
41 lines (22 loc) · 862 Bytes
/
SRefresh.podspec
File metadata and controls
41 lines (22 loc) · 862 Bytes
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
Pod::Spec.new do |s|
s.name = "SRefresh"
s.version = "0.1.0"
s.summary = "this a refreshController."
s.description = <<-DESC
* 模仿淘宝刷新,滚动到局里底部一定距离后,自动加载更多
DESC
s.homepage = "https://github.com/cs0811/SRefresh"
s.license = "MIT"
s.author = { "cs0811" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/cs0811/SRefresh.git", :tag => "0.1.0" }
s.source_files = "Classes/*.{h,m}"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
s.dependency "Masonry", "~> 0.6.3"
end