forked from RestKit/RestKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
39 lines (30 loc) · 716 Bytes
/
Podfile
File metadata and controls
39 lines (30 loc) · 716 Bytes
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
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
use_frameworks!
workspace 'RestKit.xcworkspace'
def import_pods
pod 'RestKit/Testing', :path => '.'
pod 'RestKit/Search', :path => '.'
pod 'Specta', '1.0.5'
pod 'OCMock', '2.2.4'
pod 'OCHamcrest', '3.0.1'
pod 'Expecta', '1.0.5'
# Used for testing Value Transformer integration
pod 'RKCLLocationValueTransformer', '~> 1.1.0'
end
target 'RestKit' do
platform :ios, '8.0'
podspec
target 'RestKitTests' do
inherit! :search_paths
import_pods
end
end
target 'RestKitFramework' do
platform :osx, '10.9'
podspec
target 'RestKitFrameworkTests' do
inherit! :search_paths
import_pods
end
end