forked from wordpress-mobile/WordPressKit-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordPressKit.podspec
28 lines (25 loc) · 1.17 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
Pod::Spec.new do |s|
s.name = "WordPressKit"
s.version = "4.16.0-beta.2"
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 = "GPLv2"
s.author = { "WordPress" => "[email protected]" }
s.platform = :ios, "11.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 = 'WordPressKit/**/*.{h,m,swift}'
s.private_header_files = "WordPressKit/Private/*.h"
s.requires_arc = true
s.header_dir = 'WordPressKit'
s.dependency 'Alamofire', '~> 4.8.0'
s.dependency 'CocoaLumberjack', '~> 3.4'
s.dependency 'WordPressShared', '~> 1.10-beta'
s.dependency 'NSObject-SafeExpectations', '0.0.4'
s.dependency 'wpxmlrpc', '0.8.5'
s.dependency 'UIDeviceIdentifier', '~> 1'
end