This repository was archived by the owner on Mar 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTailoredFloatingLabelTextInput.podspec
More file actions
executable file
·42 lines (25 loc) · 2.65 KB
/
TailoredFloatingLabelTextInput.podspec
File metadata and controls
executable file
·42 lines (25 loc) · 2.65 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "TailoredFloatingLabelTextInput"
s.version = "1.0.0"
s.summary = "An iOS text input field written in Swift, tailored to your needs."
s.description = <<-DESC
A highly customizable text input field written in Swift which have a floating label design pattern implementation among many other features. It has no external dependencies and can be used to implement not only Google's Material Design spec but many other designs as well.
DESC
s.homepage = "https://github.com/AutSoft/TailoredFloatingLabelTextInput"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.authors = { 'AutSoft Kft.' => 'info@autsoft.hu', 'Balázs Gerlei' => 'gerlei.balazs@autsoft.hu' }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = '9.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/AutSoft/TailoredFloatingLabelTextInput.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "TailoredFloatingLabelTextInput/**/*.{swift}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.resources = "TailoredFloatingLabelTextInput/**/*.{png,jpeg,jpg,storyboard,xib}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end