-
Notifications
You must be signed in to change notification settings - Fork 2
/
MTORefresher.podspec
24 lines (22 loc) · 1.03 KB
/
MTORefresher.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
Pod::Spec.new do |s|
s.name = "MTORefresher"
s.version = "1.1.0"
s.summary = "MTORefresher is a Swift implementation of pull-to-refresh"
s.description = "MTORefresher is a Swift implementation of pull-to-refresh, include pull-down and pull-up. Use 1 line of code can make this. Also you can use Component protocol to custom your own pull-to-refresh Component."
s.homepage = "https://github.com/lihei12345/MTORefresher"
s.license = 'MIT'
s.author = { "lifuqiang" => "195135955@qq.com" }
s.source = { :git => "https://github.com/lihei12345/MTORefresher.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Source/*.swift"
ss.framework = "UIKit"
end
s.subspec "BasicComponent" do |ss|
ss.source_files = "BasicComponent/*.swift"
ss.dependency "MTORefresher/Core"
ss.resources = "BasicComponent/*.{png,jpg}"
end
end