forked from nicklockwood/FXBlurView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FXBlurViewGradient.podspec
30 lines (26 loc) · 1.25 KB
/
FXBlurViewGradient.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
#
# Be sure to run `pod lib lint FXBlurView-Gradient.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "FXBlurViewGradient"
s.version = "1.7"
s.summary = "UIView subclass that replicates the iOS 7 realtime background blur effect with ability to add a gradient, but works on iOS 5 and above."
s.description = "UIView subclass that replicates the iOS 7 realtime background blur effect with ability to add a gradient, but works on iOS 5 and above."
s.homepage = "https://github.com/Baaam/FXBlurView"
s.license = 'MIT'
s.author = { "Nick Lockwood" => "http://charcoaldesign.co.uk/", "Luís Portela Afonso" => "[email protected]" }
s.source = { :git => "https://github.com/Baaam/FXBlurView.git", :tag => "1.7" }
s.platform = :ios, '4.3'
s.requires_arc = true
s.source_files = 'FXBlurView'
s.resource_bundles = {
'FXBlurView-Gradient' => ['Pod/Assets/*.png']
}
s.public_header_files = 'FXBlurView/*.h'
s.frameworks = 'Accelerate', 'QuartzCore'
end