Files
DTTextField/DTTextField.podspec
T
Dhaval Thanki 2083565137 errorTextColor property added to change error label text color
DTTextField framework created
2022-01-23 14:25:00 +05:30

30 lines
962 B
Ruby

#
# Be sure to run `pod lib lint DTTextField.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DTTextField'
s.version = '0.6.0'
s.summary = 'DTTextField is UITextField library.'
s.description = <<-DESC
DTTextField is UITextField library with floating and error label.
DESC
s.homepage = 'https://github.com/iDhaval/DTTextField'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dhaval Thanki' => 'dhaval.thanki@gmail.com' }
s.source = { :git => 'https://github.com/iDhaval/DTTextField.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'Sources/DTTextField/**/*'
s.frameworks = 'UIKit'
end