forked from mileswd/ImgurSession
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
57 lines (35 loc) · 719 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" do
platform :osx, "10.9"
pod 'AFNetworking', '~> 3.1.0'
end
target "OSXAuthenticatedTests" do
platform :osx, "10.9"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
target "OSXAnonTests" do
platform :osx, "10.9"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
target "OSXIntegratedAuthenticatedTests" do
platform :osx, "10.9"
pod 'Expecta'
end
target "OSXIntegratedAnonTests" do
platform :osx, "10.9"
pod 'Expecta'
end
target "ImgurSession" do
platform :ios, "8.0"
pod 'AFNetworking', '~> 3.1.0'
end
target "iOSAuthenticatedTests" do
platform :ios, "8.0"
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end