forked from wordpress-mobile/WordPressKit-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
35 lines (28 loc) · 846 Bytes
/
Podfile
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
# frozen_string_literal: true
source 'https://cdn.cocoapods.org/'
inhibit_all_warnings!
use_frameworks!
platform :ios, '13.0'
def wordpresskit_pods
pod 'Alamofire', '~> 4.8.0'
pod 'CocoaLumberjack', '~> 3.4'
pod 'WordPressShared', '~> 1.15-beta' # will use release and beta versions up to 2.0
pod 'NSObject-SafeExpectations', '~> 0.0.4'
pod 'wpxmlrpc', '~> 0.9.0'
# pod 'wpxmlrpc', :git => 'https://github.com/wordpress-mobile/wpxmlrpc.git', :branch => 'feature/update-xcode-settings'
pod 'UIDeviceIdentifier', '~> 1.4'
end
## WordPress Kit
## =============
##
target 'WordPressKit' do
project 'WordPressKit.xcodeproj'
wordpresskit_pods
end
target 'WordPressKitTests' do
project 'WordPressKit.xcodeproj'
wordpresskit_pods
pod 'OHHTTPStubs', '~> 9.0'
pod 'OHHTTPStubs/Swift', '~> 9.0'
pod 'OCMock', '~> 3.4'
end