forked from square/Listable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
26 lines (18 loc) · 635 Bytes
/
Podfile
File metadata and controls
26 lines (18 loc) · 635 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
platform :ios, '15.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