-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathRAGTextField.podspec
More file actions
13 lines (13 loc) · 922 Bytes
/
RAGTextField.podspec
File metadata and controls
13 lines (13 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
Pod::Spec.new do |s|
s.name = 'RAGTextField'
s.version = '0.14.0'
s.summary = 'Subclass of UITextField featuring a floating placeholder and a hint label.'
s.description = 'Subclass of UITextField that adds an animated placeholder and an optional hint label below the text. Supports an arbitrary view in the background of the text (outline and underline views are provided) as well as the left and right views, text alignments, flexible padding and offsets.'
s.homepage = 'https://github.com/raginmari/RAGTextField'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'raginmari' => 'reimar.twelker@web.de' }
s.source = { :git => 'https://github.com/raginmari/RAGTextField.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'Sources/RAGTextField/Classes/**/*'
end