-
Notifications
You must be signed in to change notification settings - Fork 73
/
DSGraphicsKit.podspec
28 lines (26 loc) · 1.2 KB
/
DSGraphicsKit.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
Pod::Spec.new do |s|
s.name = 'DSGraphicsKit'
s.version = '1.0'
s.license = 'MIT'
s.summary = 'Utilties for common and advanced graphics operations.'
s.description = <<-DESC
Utilities for common and advanced graphics operations.
DSGraphicsKit provides support to quickly perform the following operations:
* Images:
- Create icons with fills, glows and shadows from the alpha channel of an image.
- Resize with corner rounding.
- Render a layer to an image.
* Views:
- Add a 3d rotation along the y axis.
- Add a reflection.
* Animations:
- Add a pop up animation to a layer.
DESC
s.homepage = 'https://github.com/Discontinuity-srl/DSGraphicsKit'
s.author = { 'Fabio A. Pelosin' => 'fabio@discontinuity.it' }
s.source = { :git => 'https://github.com/Discontinuity-srl/DSGraphicsKit.git', :tag => '1.0' }
s.platform = :ios, '4.0'
s.source_files = 'Classes'
s.framework = 'QuartzCore'
s.requires_arc = true
end