forked from RestKit/RestKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
40 lines (32 loc) · 752 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
36
37
38
39
40
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
target :RestKit do
platform :ios, '5.1.1'
podspec
end
target :RestKitFramework do
platform :osx, '10.7'
podspec
end
def import_pods
pod 'RestKit', :path => '.'
pod 'RestKit/CocoaLumberjack', :path => '.'
pod 'RestKit/Search', :path => '.'
pod 'RestKit/Testing', :path => '.'
pod 'Specta', '0.2.1'
pod 'OCMock', '2.2.4'
pod 'OCHamcrest', '3.0.1'
pod 'Expecta', '0.3.1'
# Used for testing Value Transformer integration
pod 'RKCLLocationValueTransformer', '~> 1.1.0'
end
target :ios do
platform :ios, '5.1.1'
link_with 'RestKitTests'
import_pods
end
target :osx do
platform :osx, '10.7'
link_with 'RestKitFrameworkTests'
import_pods
end