forked from Citrrus/BlurryModalSegue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlurryModalSegue.podspec
23 lines (20 loc) · 949 Bytes
/
BlurryModalSegue.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
git_tag = '1.1.0'
s.name = "BlurryModalSegue"
s.version = git_tag
s.summary = "A custom segue for providing a blurred overlay effect."
s.description = <<-DESC
BlurryModalSegue is a UIStoryboardSegue subclass that provides a blur effect for Modal storyboard segues.
DESC
s.homepage = "https://github.com/Citrrus/BlurryModalSegue"
s.screenshots = "https://raw.github.com/Citrrus/BlurryModalSegue/#{git_tag}/blurry_modal.gif"
s.license = 'MIT'
s.author = { "Matt Hupman" => "mhupman@citrrus.com" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/Citrrus/BlurryModalSegue.git", :tag => git_tag }
s.source_files = 'BlurryModalSegue'
s.framework = 'QuartzCore'
s.requires_arc = true
s.dependency 'UIImage+BlurredFrame', '~> 0.0.4'
s.dependency 'MZAppearance', '~>1.1.1'
end