forked from Touchwonders/Transition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransition.podspec
20 lines (16 loc) · 905 Bytes
/
Transition.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'Transition'
s.version = '1.2.0'
s.summary = 'Easy interactive interruptible custom ViewController transitions.'
s.description = <<-DESC
Transition makes building interactive interruptible custom view controller transitions easy! You just define the animation and interaction, Transition ties it all together.
DESC
s.homepage = 'https://github.com/Touchwonders/Transition'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Toine Heuvelmans" => "[email protected]" }
s.social_media_url = "https://twitter.com/touchwonders"
s.source = { :git => 'https://github.com/Touchwonders/Transition.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.platform = :ios, '10.0'
s.source_files = 'Transition/Classes/**/*'
end