-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathExampleFCOverlay.podspec
21 lines (19 loc) · 1.03 KB
/
ExampleFCOverlay.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "FCOverlay"
s.version = "1.0.6"
s.summary = "FCOverlay gives you the power to create any type of overlay in a new window"
s.description = <<-DESC
Present or queue view controllers in a new window on top of all other windows.
This allows you to present log in screens, alert style screens and HUD easily from
anywhere in your code. You do not need to find the currently visible view controller
or any of that stuff. Just present it and get on with life. See the full project for
example usage.
DESC
s.homepage = "https://github.com/lickylick/FCOverlayViewController"
s.license = 'MIT'
s.author = { "Almer Lucke" => "almer.lucke@gmail.com" }
s.platform = :ios, '5.0'
s.source = { :git => 'https://github.com/lickylick/FCOverlayViewController.git', :tag => 'v1.0.6' }
s.source_files = 'FCOverlayViewControllerClass/*'
s.requires_arc = true
end