forked from marcosgriselli/EasyTransitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyTransitions.podspec
More file actions
17 lines (14 loc) · 1.14 KB
/
EasyTransitions.podspec
File metadata and controls
17 lines (14 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'EasyTransitions'
s.version = '0.2.1'
s.summary = 'Create beautiful transitions for your app with a predifined set of interactions.'
s.description = 'Creating transitions with a great user experience on iOS require a lot of work. Many protocols to implement, many animations to create and it usually ends up in a code mess which cannot be used in another transition or app. EasyTransitions library attempts to provide a few basic transitions in a simple way to implement and to extend so you can add incredible transitions with a few lines of code.'
s.homepage = 'https://github.com/marcosgriselli/EasyTransitions'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'marcosgriselli' => 'marcosgriselli@gmail.com' }
s.source = { :git => 'https://github.com/marcosgriselli/EasyTransitions.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/marcosgriselli'
s.ios.deployment_target = '10.0'
s.source_files = 'EasyTransitions/Classes/**/*'
s.swift_version = '4.0'
end