forked from 2359media/Atlas-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (25 loc) · 775 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
platform :ios, '8.0'
# Import CocoaPods sources
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
link_with 'Programmatic', 'Storyboard'
pod 'Atlas', path: '.'
pod 'LayerKit'
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