-
Notifications
You must be signed in to change notification settings - Fork 525
/
Podfile
35 lines (29 loc) · 821 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
platform :ios, '7.0'
# Import CocoaPods sources
source 'https://github.com/CocoaPods/Specs.git'
target 'Programmatic' do
pod 'Atlas', path: '.'
pod 'LayerKit'
end
target 'Storyboard' do
pod 'Atlas', path: '.'
pod 'LayerKit'
end
target 'ProgrammaticTests' do
pod 'KIFViewControllerActions', git: 'https://github.com/blakewatters/KIFViewControllerActions.git'
pod 'LYRCountDownLatch', git: 'https://github.com/layerhq/LYRCountDownLatch.git'
pod 'KIF'
pod 'Expecta'
pod 'OCMock'
end
target 'StoryboardTests' do
pod 'KIFViewControllerActions', git: 'https://github.com/blakewatters/KIFViewControllerActions.git'
pod 'LYRCountDownLatch', git: 'https://github.com/layerhq/LYRCountDownLatch.git'
pod 'KIF'
pod 'Expecta'
pod 'OCMock'
end
target 'UnitTests' do
pod 'Expecta'
pod 'OCMock'
end