-
Notifications
You must be signed in to change notification settings - Fork 16
/
WordPressKit.podspec
33 lines (26 loc) · 1.42 KB
/
WordPressKit.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
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WordPressKit'
s.version = '17.3.0'
s.summary = 'WordPressKit offers a clean and simple WordPress.com and WordPress.org API.'
s.description = <<-DESC
This framework encapsulates all of the networking calls and entity parsers required to interact
with WordPress.com and WordPress.org endpoints.
DESC
s.homepage = 'https://github.com/wordpress-mobile/WordPressKit-iOS'
s.license = { type: 'GPLv2', file: 'LICENSE' }
s.author = { 'The WordPress Mobile Team' => '[email protected]' }
s.platform = :ios, '13.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: s.version.to_s }
s.source_files = 'Sources/**/*.{h,m,swift}'
# When headers are not specified, then all headers are considered public.
# The only thing left to do is to explicitly specify those that should be private.
s.private_header_files = 'Sources/WordPressKit/Private/*.h'
s.dependency 'NSObject-SafeExpectations', '~> 0.0.4'
s.dependency 'wpxmlrpc', '~> 0.10'
s.dependency 'UIDeviceIdentifier', '~> 2.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 'WordPressShared', '~> 2.0-beta'
end