-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathWordPressAuthenticator.podspec
45 lines (37 loc) · 1.84 KB
/
WordPressAuthenticator.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
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WordPressAuthenticator'
s.version = '9.10.2'
s.summary = 'WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps.'
s.description = <<-DESC
This framework encapsulates everything required to display the Authentication UI
and perform authentication against WordPress.com and WordPress.org sites.
Plus: WordPress.com *signup* is supported.
DESC
s.homepage = 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS'
s.license = { type: 'GPLv2', file: 'LICENSE' }
s.author = { 'The WordPress Mobile Team' => 'mobile@wordpress.org' }
s.platform = :ios, '13.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git',
tag: s.version.to_s }
s.source_files = 'WordPressAuthenticator/**/*.{h,m,swift}'
s.private_header_files = 'WordPressAuthenticator/Private/*.h'
s.resource_bundles = {
WordPressAuthenticatorResources: [
'WordPressAuthenticator/Resources/Assets.xcassets',
'WordPressAuthenticator/Resources/SupportedEmailClients/*.plist',
'WordPressAuthenticator/Resources/Animations/*.json',
'WordPressAuthenticator/**/*.{storyboard,xib}'
]
}
s.header_dir = 'WordPressAuthenticator'
s.dependency 'NSURL+IDN', '0.4'
s.dependency 'SVProgressHUD', '~> 2.2.5'
s.dependency 'Gridicons', '~> 1.0'
# Use a loose restriction that allows both production and beta versions, up to the next major version.
# If you want to update which of these is used, specify it in the host app.
s.dependency 'WordPressUI', '~> 1.7-beta'
s.dependency 'WordPressKit', '~> 17.3'
s.dependency 'WordPressShared', '~> 2.1-beta'
end