forked from square/Listable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
28 lines (19 loc) · 672 Bytes
/
Copy pathPodfile
File metadata and controls
28 lines (19 loc) · 672 Bytes
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
source 'https://cdn.cocoapods.org/'
platform :ios, '12.0'
project 'Demo/Demo.xcodeproj'
workspace 'Demo/Demo.xcworkspace'
use_frameworks!
target 'Demo' do
# Local Pods
pod 'ListableUI', :path => 'ListableUI.podspec', :testspecs => ['Tests']
pod 'BlueprintUILists', :path => 'BlueprintUILists.podspec', :testspecs => ['Tests']
# External Pods
pod 'BlueprintUI'
pod 'BlueprintUICommonControls'
# Internal Pods
pod 'EnglishDictionary', :path => 'Internal Pods/EnglishDictionary/EnglishDictionary.podspec'
end
target 'Test Targets' do
# XCTest-Referencing Pods
pod 'Snapshot', :path => 'Internal Pods/Snapshot/Snapshot.podspec', :testspecs => ['Tests']
end