forked from juanpablofernandez/CountryList
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLocalizedCountryList.podspec
More file actions
18 lines (16 loc) · 1003 Bytes
/
LocalizedCountryList.podspec
File metadata and controls
18 lines (16 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "LocalizedCountryList"
s.version = "2.0.2"
s.summary = "Easily present a list of countries and their respective information."
s.description = <<-DESC
CountryList makes it easy to present the user with a list of Countries and their respective information, like country code, phone extension and flag.
DESC
s.homepage = "https://github.com/mmdock/CountryList"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {"Juan Pablo Fernandez" => "juanpablofer17@gmail.com", "Morgan Matthew Dock" => "morgan.dock@gmail.com" }
s.social_media_url = "https://github.com/mmdock"
s.ios.deployment_target = '9.0'
s.swift_version = '5.2'
s.source = { :git => "https://github.com/mmdock/CountryList.git", :tag => "#{s.version}" }
s.source_files = "CountryList", "CountryList/**/*.{swift}"
end