-
Notifications
You must be signed in to change notification settings - Fork 0
/
LVModalQueue.podspec
25 lines (22 loc) · 1.04 KB
/
LVModalQueue.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
#
# Be sure to run `pod lib lint LVModalQueue.podspec' to ensure this is a
# valid spec before submitting.
Pod::Spec.new do |s|
s.name = "LVModalQueue"
s.version = "0.3.0"
s.license = { :type => 'BSD' }
s.summary = "Queue presentViewController: and dismissViewController: when called multiple times"
s.description = <<-DESC
This fixes 'NSInternalInconsistencyException's when presentViewController: and dismissViewController: are called, while a transition is already in progress.
Transitions are queued for later execution.
DESC
s.homepage = "https://github.com/Lovoo/LVModalQueue"
s.author = { "Michael Berg" => "[email protected]" }
s.source = { :git => "https://github.com/Lovoo/LVModalQueue.git", :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Sources/LVModalQueue/**/*'
s.public_header_files = 'Sources/LVModalQueue/**/*.h'
s.frameworks = 'UIKit'
end