-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathScrollEdgeControl.podspec
More file actions
27 lines (23 loc) · 921 Bytes
/
ScrollEdgeControl.podspec
File metadata and controls
27 lines (23 loc) · 921 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
Pod::Spec.new do |s|
s.name = "ScrollEdgeControl"
s.version = "1.2.0"
s.summary = "Yet another UIRefreshControl"
s.description = <<-DESC
Yet another UIRefreshControl. It's control for edge in scroll view.
DESC
s.homepage = "http://github.com/eure/ScrollEdgeControl"
s.license = "MIT"
s.author = { "Muukii" => "hiroshi.kimura@eure.jp", "Matto" => "takuma.matsushita@eure.jp" }
s.ios.deployment_target = "12.0"
s.source = { :git => "https://github.com/eure/ScrollEdgeControl.git", :tag => "#{s.version}" }
s.dependency "Advance"
s.default_subspec = "Library"
s.swift_versions = ["5.4", "5.5"]
s.subspec "Core" do |ss|
ss.source_files = "ScrollEdgeControl/Core/**/*.swift"
end
s.subspec "Library" do |ss|
ss.source_files = "ScrollEdgeControl/Library/**/*.swift"
ss.dependency "ScrollEdgeControl/Core"
end
end