-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBLPhoneFormat.podspec
More file actions
33 lines (30 loc) · 1.35 KB
/
BLPhoneFormat.podspec
File metadata and controls
33 lines (30 loc) · 1.35 KB
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
33
#
# Be sure to run `pod lib lint BLPhoneFormat.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "BLPhoneFormat"
s.version = "0.3.3"
s.summary = "Simple iOS Phone Number formatter Pod."
s.description = <<-DESC
Inspired by RMPhoneFormat and Telegram App phone formatting behavior.
Only few methods to detect which country code is entered and format phone number.
Also list of Countries with phone codes included.
DESC
s.homepage = "https://github.com/batkov/BLPhoneFormat"
s.license = 'MIT'
s.author = { "Hariton Batkov" => "batkov@i.ua" }
s.source = { :git => "https://github.com/batkov/BLPhoneFormat.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/batkov111'
s.screenshots = "https://raw.githubusercontent.com/batkov/BLPhoneFormat/master/Screenshots/BLPhoneFormat.png"
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'BLPhoneFormat' => ['Pod/Assets/**/*']
}
end