forked from cloudmine/CloudMineSDK-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (39 loc) · 1.01 KB
/
Podfile
File metadata and controls
44 lines (39 loc) · 1.01 KB
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
#
# Podfile for CloudMine SDK on iOS
#
source 'https://github.com/CocoaPods/Specs.git'
#
# Supporting iOS 6 and above
#
platform :ios, '6.0'
#
# Define the workspace we had before Cocoapods
#
workspace 'cm-ios'
#
# Define the XCode project file we already had before Cocoapods
#
xcodeproj 'ios/cloudmine-ios'
#
# Inhibit all Warnings in Pods. We are trusting the pods we use to
# stay up to date and not have warnings which cause issues. When building
# the CloudMine Library, we want 0 warnings, and so any noise should be
# ignored.
#
inhibit_all_warnings!
#
# The Pods for CloudMine SDK usage. AFNetworking for networking
# and MAObjCRuntime for easy runtime inspection of properties
#
target "cloudmine-ios" do
pod 'AFNetworking', '2.5.3'
pod 'MAObjCRuntime', '0.0.1'
end
#
# The Pods for testing the iOS SDK. Kiwi is our BDD testing framework
# and NSData+Base64 is used in examining base64 data in requests.
#
target 'cloudmine-iosTests', :exclusive => true do
pod 'Kiwi', '2.3.1'
pod 'NSData+Base64', '1.0.0'
end