-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewHider.podspec
More file actions
27 lines (23 loc) · 1.06 KB
/
ViewHider.podspec
File metadata and controls
27 lines (23 loc) · 1.06 KB
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 = "ViewHider"
s.version = "0.1.1"
s.summary = "A simple helper for dynamic layouts"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
"This pod allows to manage constraints based on view hidden state directly in xib, without adding additional code."
DESC
s.homepage = "https://github.com/iThinker/ViewHider"
s.license = 'MIT'
s.author = { "Roman Temchenko" => "temchenko.r@gmail.com" }
s.source = { :git => "https://github.com/iThinker/ViewHider.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'ViewHider' => ['Pod/Assets/*.png']
}
end