-
Notifications
You must be signed in to change notification settings - Fork 105
/
POP+MCAnimate.podspec
46 lines (39 loc) · 1.31 KB
/
POP+MCAnimate.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Pod::Spec.new do |s|
s.name = 'POP+MCAnimate'
s.version = '2.0.1'
s.platform = :ios, '7.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Concise syntax for the Pop animation framework.'
s.homepage = 'https://github.com/matthewcheok/POP-MCAnimate'
s.author = { 'Matthew Cheok' => '[email protected]' }
s.requires_arc = true
s.source = {
:git => 'https://github.com/matthewcheok/POP-MCAnimate.git',
:branch => 'master',
:tag => s.version.to_s
}
s.source_files = 'POP+MCAnimate/*.{h,m}'
s.public_header_files = 'POP+MCAnimate/*.h'
s.dependency 'pop', '~> 1.0'
s.subspec 'Internal' do |ss|
ss.source_files = 'POP+MCAnimate/Internal/*.{h,m}'
ss.public_header_files = ''
end
s.subspec 'Velocity' do |ss|
ss.dependency 'POP+MCAnimate/Internal'
ss.source_files = 'POP+MCAnimate/Velocity/*.{h,m}'
end
s.subspec 'Group' do |ss|
ss.source_files = 'POP+MCAnimate/Group/*.{h,m}'
end
s.subspec 'Animations' do |ss|
ss.dependency 'POP+MCAnimate/Internal'
ss.dependency 'POP+MCAnimate/Velocity'
ss.dependency 'POP+MCAnimate/Group'
ss.dependency 'POP+MCAnimate/Shorthand'
ss.source_files = 'POP+MCAnimate/Animations/*.{h,m}'
end
s.subspec 'Shorthand' do |ss|
ss.source_files = 'POP+MCAnimate/Shorthand/*.{h,m}'
end
end