-
Notifications
You must be signed in to change notification settings - Fork 5
/
GravatarUI.podspec
36 lines (29 loc) · 1.17 KB
/
GravatarUI.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
31
32
33
34
35
36
# frozen_string_literal: true
require_relative 'version'
Pod::Spec.new do |s|
s.name = 'GravatarUI'
s.version = Gravatar::VERSION
s.summary = 'A convient library of Gravatar UI components'
s.homepage = 'https://gravatar.com'
s.license = { type: 'Mozilla Public License v2', file: 'LICENSE.md' }
s.authors = 'Automattic, Inc.'
s.source = {
git: 'https://github.com/Automattic/Gravatar-SDK-iOS.git',
tag: s.version.to_s
}
s.documentation_url = 'https://swiftpackageindex.com/Automattic/Gravatar-SDK-iOS/documentation/gravatarui'
s.swift_versions = Gravatar::SWIFT_VERSIONS
ios_deployment_target = '15.0'
s.ios.deployment_target = ios_deployment_target
s.source_files = 'Sources/GravatarUI/**/*.swift'
s.resource_bundles = {
'GravatarUI' => ['Sources/GravatarUI/Resources/*.xcassets']
}
s.dependency 'Gravatar', s.version.to_s
s.ios.framework = 'UIKit'
# Using the `package` access level for types requires us to pass `-package-name`
# as a swift flag, with the same name for each module/pod
s.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS' => '-Xfrontend -package-name -Xfrontend gravatar_sdk_ios'
}
end