-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFloatingLabel.podspec
31 lines (23 loc) · 1.3 KB
/
FloatingLabel.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
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "FloatingLabel"
s.version = "0.1.9"
s.summary = "An implementation of a UX pattern \"Float Label Pattern\""
s.description = <<-DESC
A collection of UI component that are implementing the "Float Label Pattern"
like TextField, TextView and more.
DESC
s.homepage = "https://github.com/kevin-hirsch/FloatingLabel"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "kevin-hirsch" => "[email protected]" }
s.social_media_url = "http://twitter.com/kevinh6113"
s.platform = :ios, '8.0'
s.source = {
:git => "https://github.com/kevin-hirsch/FloatingLabel.git",
:tag => s.version.to_s
}
s.source_files = "FloatingLabel/src", "FloatingLabel/src/**/*.{swift}", "FloatingLabel/src/helpers", "FloatingLabel/src/helpers/**/*.{h,m}", "FloatingLabel/src/basic field", "FloatingLabel/src/basic field/**/*.{swift}", "FloatingLabel/src/input", "FloatingLabel/src/input/**/*.{swift}", "FloatingLabel/src/fields", "FloatingLabel/src/fields/**/*.{swift}", "FloatingLabel/src/tableView:collectionView", "FloatingLabel/src/tableView:collectionView/**/*.{swift}"
s.resource_bundles = { 'FloatingLabel' => ['FloatingLabel/Resources/**/*.png'] }
s.dependency "DropDown"
s.dependency "SZTextView"
s.requires_arc = true
end