1234567891011121314 |
- Pod::Spec.new do |s|
- s.name = 'VIMediaCache'
- s.version = '0.1.0'
- s.license = 'MIT'
- s.summary = 'VIMediaCache is a tool to cache media file while play media using AVPlayer'
- s.homepage = 'https://github.com/vitoziv/VIMediaCache'
- s.author = { 'Vito' => 'vvitozhang@gmail.com' }
- s.source = { :git => 'http://svn.ouj.com:3000/duowan_iOS/VideoCache.git', :tag => s.version.to_s }
- s.platform = :ios, '9.0'
- s.source_files = 'VIMediaCache/*.{h,m}', 'VIMediaCache/**/*.{h,m}'
- s.frameworks = 'MobileCoreServices', 'AVFoundation'
- s.requires_arc = true
- end
|