-
Notifications
You must be signed in to change notification settings - Fork 90
/
EasyTransitions.podspec
21 lines (17 loc) · 1.23 KB
/
EasyTransitions.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'EasyTransitions'
s.version = '0.6.0'
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.swift_version = "5.1"
s.swift_versions = ['4.0', '4.2', '5.0']
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.source_files = 'EasyTransitions/Classes/**/*'
s.swift_version = '4.2'
end