-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimationSwitchRootViewController.podspec
47 lines (35 loc) · 1.43 KB
/
AnimationSwitchRootViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = "AnimationSwitchRootViewController"
s.version = "1.0.3"
s.summary = "Extension for UIWindow - animation switch rootViewController in UIWindow"
s.description = <<-DESC
Core written in Objective-C, interface written in Swift.
Support two types animation: CATransition and move shnapshots views.
DESC
s.homepage = "https://github.com/ProVir/AnimationSwitchRootViewController"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ViR (Vitaliy Korotkiy)" => "admin@provir.ru" }
s.source = { :git => "https://github.com/ProVir/AnimationSwitchRootViewController.git", :tag => "#{s.version}" }
s.platform = :ios, "8.0"
s.swift_versions = ['5.0', '5.1', '5.2', '5.3']
s.default_subspec = 'Swift'
s.subspec 'Swift' do |ss|
ss.platform = :ios, "8.0"
ss.source_files = [
'AnimationSwitchRootViewController/ObjC/*.{h,m}',
'AnimationSwitchRootViewController/Swift/*.swift'
]
ss.public_header_files = 'AnimationSwitchRootViewController/ObjC/*.h'
end
s.subspec 'ObjC' do |ss|
ss.platform = :ios, "6.0"
ss.source_files = [
'AnimationSwitchRootViewControllerObjC/*.h',
'AnimationSwitchRootViewController/ObjC/*.{h,m}'
]
ss.public_header_files = [
'AnimationSwitchRootViewControllerObjC/*.h',
'AnimationSwitchRootViewController/ObjC/*.h'
]
end
end