diff --git a/POP+MCAnimate.podspec b/POP+MCAnimate.podspec index ff2e65e..5f89491 100644 --- a/POP+MCAnimate.podspec +++ b/POP+MCAnimate.podspec @@ -22,14 +22,23 @@ Pod::Spec.new do |s| ss.public_header_files = '' end - s.subspec 'Animations' do |ss| - ss.source_files = 'POP+MCAnimate/Animations/*.{h,m}' + 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 diff --git a/POP+MCAnimate/Internal/MCAnimationProxy.h b/POP+MCAnimate/Animations/MCAnimationProxy.h similarity index 100% rename from POP+MCAnimate/Internal/MCAnimationProxy.h rename to POP+MCAnimate/Animations/MCAnimationProxy.h diff --git a/POP+MCAnimate/Internal/MCAnimationProxy.m b/POP+MCAnimate/Animations/MCAnimationProxy.m similarity index 100% rename from POP+MCAnimate/Internal/MCAnimationProxy.m rename to POP+MCAnimate/Animations/MCAnimationProxy.m diff --git a/POP+MCAnimate/Animations/MCVelocityProxy.h b/POP+MCAnimate/Velocity/MCVelocityProxy.h similarity index 100% rename from POP+MCAnimate/Animations/MCVelocityProxy.h rename to POP+MCAnimate/Velocity/MCVelocityProxy.h diff --git a/POP+MCAnimate/Animations/MCVelocityProxy.m b/POP+MCAnimate/Velocity/MCVelocityProxy.m similarity index 100% rename from POP+MCAnimate/Animations/MCVelocityProxy.m rename to POP+MCAnimate/Velocity/MCVelocityProxy.m diff --git a/POP+MCAnimate/Animations/MCVelocityProxyInternal.h b/POP+MCAnimate/Velocity/MCVelocityProxyInternal.h similarity index 100% rename from POP+MCAnimate/Animations/MCVelocityProxyInternal.h rename to POP+MCAnimate/Velocity/MCVelocityProxyInternal.h