-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
SwipeTransition.podspec
23 lines (18 loc) · 975 Bytes
/
SwipeTransition.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'SwipeTransition'
s.version = '0.5.0'
s.summary = 'Allows trendy transitions using swipe gesture such as "swipe back".'
s.description = <<-DESC
SwipeTransition allows trendy transitions using swipe gesture such as "swipe back".
DESC
s.homepage = 'https://github.com/tattn/SwipeTransition'
# s.screenshots = 'https://github.com/tattn/SwipeTransition/raw/master/docs/assets/demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'git' => 'tanakasan2525@gmail.com' }
s.source = { :git => 'https://github.com/tattn/SwipeTransition.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tanakasan2525'
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/SwipeTransition/**/*.{swift,h,m}'
s.public_header_files = 'Sources/SwipeTransition/**/*.h'
s.frameworks = 'UIKit'
end