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
23 lines
689 B
Ruby
23 lines
689 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'PlayerKit'
|
|
s.version = '3.1.0'
|
|
s.summary = 'A modular video player system.'
|
|
|
|
s.description = <<-DESC
|
|
PlayerKit is a modular video player system for iOS and tvOS.
|
|
DESC
|
|
|
|
s.homepage = 'https://github.com/vimeo/PlayerKit'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'code' => 'gavin@vimeo.com' }
|
|
s.source = { :git => 'https://github.com/vimeo/PlayerKit.git', :tag => s.version.to_s }
|
|
|
|
s.ios.deployment_target = '10.3'
|
|
s.tvos.deployment_target = '10.0'
|
|
|
|
s.swift_version = "5.0"
|
|
|
|
s.source_files = 'Sources/**/*.swift'
|
|
|
|
end
|