-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathNKVPhonePicker.podspec
More file actions
executable file
·32 lines (26 loc) · 1023 Bytes
/
Copy pathNKVPhonePicker.podspec
File metadata and controls
executable file
·32 lines (26 loc) · 1023 Bytes
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
#
# Be happy and free :)
#
# Nik Kov
# nik-kov.com
#
Pod::Spec.new do |s|
s.name = 'NKVPhonePicker'
s.version = '2.1.1'
s.summary = 'A UITextField subclass to simplify the selection of country codes.'
s.description = <<-DESC
With this pod you can easily select country codes with just making your textFields class - the NKVPhonePickerTextField.
Support formatting phone to a specific pattern. Can select countries from the list.
DESC
s.homepage = 'https://github.com/NikKovIos/NKVPhonePicker'
s.ios.deployment_target = '10.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nik Kov' => 'nikkovios@gmail.com' }
s.source = {
:git => 'https://github.com/NikKovIos/NKVPhonePicker.git',
:tag => s.version.to_s }
s.module_name = 'NKVPhonePicker'
s.source_files = 'Sources/**/*.swift'
s.resources = 'Sources/Bundle/*'
s.social_media_url = 'https://vk.com/nikekov'
end