-
Notifications
You must be signed in to change notification settings - Fork 0
/
pop.podspec
16 lines (15 loc) · 868 Bytes
/
pop.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = 'pop'
spec.version = '1.0.0'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/facebook/pop'
spec.authors = { 'Kimon Tsinteris' => '[email protected]' }
spec.summary = 'Animation framework for iOS and OS X.'
spec.source = { :git => 'https://github.com/facebook/pop.git', :tag => '1.0.0' }
spec.source_files = 'pop/**/*.{h,m,mm}'
spec.public_header_files = 'pop/{POP,POPAnimatableProperty,POPAnimation,POPAnimationEvent,POPAnimationExtras,POPAnimationTracer,POPAnimator,POPBasicAnimation,POPCustomAnimation,POPDecayAnimation,POPDefines,POPGeometry,POPPropertyAnimation,POPSpringAnimation}.h'
spec.requires_arc = true
spec.social_media_url = 'https://twitter.com/fbOpenSource'
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.7'
end