-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelative-view.podspec
More file actions
18 lines (18 loc) · 976 Bytes
/
relative-view.podspec
File metadata and controls
18 lines (18 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "relative-view"
s.version = "1.0.3"
s.summary = "A UIKit extension for UIView providing methods/operations dedicated to finding other UIViews relatively."
s.description = <<-DESC
RelativeView is a UIKit extension for UIView providing methods/operations dedicated to finding other UIViews relatively.
It offers operations to find and group ancestor (parent), descendant (child) and sibling UIViews. There are also operations
to determine whether a UIView is the ancestor, descendant or sibling of another UIView.
DESC
s.homepage = "https://github.com/JYSWDV/relative-view"
s.license = { :type => "GNU GPLv3", :file => "LICENSE.md" }
s.author = "Jae Yeum"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/JYSWDV/relative-view.git", :tag => "1.0.3" }
s.source_files = "RelativeView/*.swift"
s.requires_arc = true
s.swift_version = "5.0"
end