-
Notifications
You must be signed in to change notification settings - Fork 1
/
GDGeoData.podspec
30 lines (28 loc) · 1.17 KB
/
GDGeoData.podspec
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
#
# Be sure to run `pod lib lint GDGeoData.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 = "GDGeoData"
s.version = "0.4.0"
s.summary = "Swift wrapper for easy use of countries and regiones with ISO codes"
s.description = <<-DESC
Swift wrapper for easy use of country and region data from https://github.com/knutigro/ISO-3166-Countries-with-Regional-Codes
DESC
s.homepage = "https://github.com/knutigro/GDGeoData"
s.license = 'MIT'
s.author = { "Knut Inge Grosland" => "”[email protected]”" }
s.source = { :git => "https://github.com/knutigro/GDGeoData.git", :tag => s.version }
s.swift_version = '5.0'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.requires_arc = true
s.source_files = 'GDGeoData/Classes/*.swift'
s.resource_bundles = {
'GDGeoData' => ['GDGeoData/Assets/*.json']
}
end