From af39b97d8e9433d2535e1d53564dbeea97b6cc8a Mon Sep 17 00:00:00 2001 From: Igor Kislyuk Date: Thu, 27 Apr 2017 13:48:33 +0300 Subject: [PATCH] Add. UIAnimatedTextField --- .../0.1.12/UIAnimatedTextField.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 UIAnimatedTextField/0.1.12/UIAnimatedTextField.podspec diff --git a/UIAnimatedTextField/0.1.12/UIAnimatedTextField.podspec b/UIAnimatedTextField/0.1.12/UIAnimatedTextField.podspec new file mode 100644 index 0000000..42c4c23 --- /dev/null +++ b/UIAnimatedTextField/0.1.12/UIAnimatedTextField.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'UIAnimatedTextField' + s.version = '0.1.12' + s.summary = 'UITextField with animated placeholder' + s.description = <<-DESC + This custom control can be used as a replacement for UITextField. It comes with 5 different text types: simple, password, url, tappable, date. + DESC + s.homepage = 'https://github.com/TouchInstinct/UIAnimatedTextField' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = "Touch Instinct" + s.source = { :git => 'https://github.com/TouchInstinct/UIAnimatedTextField.git', :tag => s.version.to_s } + s.ios.deployment_target = '8.0' + s.source_files = 'UIAnimatedTextField/Source/**/*' + s.frameworks = 'UIKit' +end