forked from vdugnist/DVAssetLoaderDelegate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DVAssetLoaderDelegate.podspec
27 lines (23 loc) · 1.08 KB
/
DVAssetLoaderDelegate.podspec
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
#
# Be sure to run `pod lib lint DVAssetLoaderDelegate.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DVAssetLoaderDelegate'
s.version = '0.3.3'
s.summary = 'Delegate for loading resources for AVAsset.'
s.description = <<-DESC
This pod can help you play and cache AVAsset data with one request.
DESC
s.homepage = 'https://github.com/vdugnist/DVAssetLoaderDelegate'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'vdugnist' => 'vdugnist@gmail.com' }
s.source = { :git => 'https://github.com/vdugnist/DVAssetLoaderDelegate.git', :tag => s.version.to_s }
s.social_media_url = 'https://fb.com/vdugnist'
s.ios.deployment_target = '9.0'
s.source_files = 'DVAssetLoaderDelegate/Classes/**/*'
s.frameworks = 'AVFoundation', 'MobileCoreServices', 'SystemConfiguration'
end