forked from facebookarchive/Keyframes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyframes.podspec
15 lines (15 loc) · 963 Bytes
/
keyframes.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |spec|
spec.name = 'keyframes'
spec.version = '1.1.0'
spec.license = { :type => 'BSD', :file => 'LICENSE' }
spec.homepage = 'https://github.com/facebookincubator/Keyframes'
spec.author = { 'Sean Lee' => '[email protected]', 'Renyu Liu' => '[email protected]' }
spec.summary = 'Vector+keyframe rendering framework for iOS'
spec.source = { :git => 'https://github.com/facebookincubator/Keyframes.git', :tag => "v#{spec.version}" }
spec.source_files = 'ios/keyframes/src/**/*.{h,m,mm,cpp}'
spec.public_header_files = 'ios/keyframes/src/{Keyframes,DataModel/KFVector,Layers/KFVectorLayer,ParsingHelpers/KFVectorParsingHelper,Views/KFVectorView,Helpers/KFUtilities,Compatibility/*}.h'
spec.requires_arc = true
spec.social_media_url = 'https://twitter.com/fbOpenSource'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.11'
end