13 lines
504 B
Ruby
13 lines
504 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'PreviewTransition'
|
|
s.version = '0.0.1'
|
|
s.summary = 'Transition animation'
|
|
s.license = 'MIT'
|
|
s.homepage = 'https://github.com/Ramotion/preview-transision'
|
|
s.author = { 'Juri Vasylenko' => 'juri.v@ramotion.com' }
|
|
s.ios.deployment_target = '8.0'
|
|
s.source = { :git => 'https://github.com/Ramotion/preview-transision', :tag => s.version.to_s }
|
|
s.source_files = 'PreviewTransition/**/*.swift'
|
|
s.requires_arc = true
|
|
end
|