forked from JotaMelo/JMMaskTextField-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJMMaskTextField-Swift.podspec
More file actions
20 lines (16 loc) · 889 Bytes
/
Copy pathJMMaskTextField-Swift.podspec
File metadata and controls
20 lines (16 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'JMMaskTextField-Swift'
s.version = '0.1.3'
s.summary = 'JMMaskTextField - text field masking the easy way'
s.description = <<-DESC
JMMaskTextField makes creating masked UITextFields as easy as setting a mask string, like (000) 000-0000 for phone numbers, or AAA-0000 for a Brazilian license plate.
JMMaskTextField supports pasting, inserting and deleting from the middle.
DESC
s.homepage = 'https://github.com/JotaMelo/JMMaskTextField-Swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jota Melo' => 'jpmfagundes@gmail.com' }
s.source = { :git => 'https://github.com/JotaMelo/JMMaskTextField-Swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Jota'
s.ios.deployment_target = '8.0'
s.source_files = 'JMMaskTextField/Classes/**/*'
end