399d2c7be1
* Reorganize project and top level - Move sources into Sources - Update podspec to reflect new sources location - Move Example files into top level * Update Fastfile - Point to new project/workspace locations * Update Fastfile with correct config * Fix CI build failures - Update Fastfile to point to correct scheme - Add Tests file to PlayerKit-iOSTests target - Update Example scheme to exclude tests - Update scheme for iOS Framework target to include tests * Update .gitignore and commit Pods directory * Remove cocoapods from lane altogether
22 lines
321 B
Ruby
22 lines
321 B
Ruby
use_frameworks!
|
|
inhibit_all_warnings!
|
|
platform :ios, '10.3'
|
|
|
|
workspace 'PlayerKit'
|
|
project 'PlayerKit.xcodeproj'
|
|
|
|
def shared_pods
|
|
pod 'SwiftLint', '0.25.1'
|
|
end
|
|
|
|
target 'PlayerKit-iOS' do
|
|
platform :ios, '10.3'
|
|
shared_pods
|
|
target 'PlayerKit-iOSTests' do
|
|
end
|
|
end
|
|
|
|
target 'Example' do
|
|
shared_pods
|
|
end
|