forked from nicklockwood/FXImageView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFXImageView.podspec
18 lines (17 loc) · 1 KB
/
FXImageView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "FXImageView"
s.version = "1.3.3"
s.summary = "FXImageView is a class designed to simplify the application of common visual effects."
s.description = <<-DESC
FXImageView is a class designed to simplify the application of common visual effects such as reflections and drop-shadows to images. FXImageView includes sophisticated queuing and caching logic to maximise performance when rendering these effects in real time.
As a bonus, FXImageView includes a standalone UIImage category for cropping, scaling and applying effects directly to an image.
DESC
s.homepage = "https://github.com/nicklockwood/FXImageView"
s.license = 'zlib'
s.author = { "Nick Lockwood" => "[email protected]" }
s.source = { :git => "https://github.com/nicklockwood/FXImageView.git", :tag => "1.3.3" }
s.source_files = 'FXImageView'
s.frameworks = 'QuartzCore'
s.requires_arc = true
s.ios.deployment_target = '4.3'
end