-
Notifications
You must be signed in to change notification settings - Fork 29
/
Podfile
57 lines (35 loc) · 859 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Uncomment this line to define a global platform for your project
target "ImgurSessionOSX", :exclusive => true do
platform :osx, "10.9"
pod 'AFNetworking', '~> 3.1.0'
end
target "OSXAuthenticatedTests", :exclusive => true do
platform :osx, "10.9"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
target "OSXAnonTests", :exclusive => true do
platform :osx, "10.9"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
target "OSXIntegratedAuthenticatedTests", :exclusive => true do
platform :osx, "10.9"
pod 'Expecta'
end
target "OSXIntegratedAnonTests", :exclusive => true do
platform :osx, "10.9"
pod 'Expecta'
end
target "ImgurSession", :exclusive => true do
platform :ios, "8.0"
pod 'AFNetworking', '~> 3.1.0'
end
target "iOSAuthenticatedTests", :exclusive => true do
platform :ios, "8.0"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end