forked from malcommac/UIWindowTransitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIWindowTransitions.podspec
More file actions
17 lines (17 loc) · 893 Bytes
/
UIWindowTransitions.podspec
File metadata and controls
17 lines (17 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "UIWindowTransitions"
s.version = "1.0.0"
s.summary = "Animated transitions for UIWindow's rootViewController property"
s.description = <<-DESC
This library allows to execute animated transition when changing the UIWindow's rootViewController property. Animations are done using CoreAnimation.
DESC
s.homepage = "https://github.com/malcommac/UIWindowTransitions"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "me@danielemargutti.com" }
s.social_media_url = "https://twitter.com/danielemargutti"
s.ios.deployment_target = "11.0"
s.source = { :git => "https://github.com/malcommac/UIWindowTransitions.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation"
s.swift_versions = ['5.0', '5.1', '5.3']
end