-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSFPSDWriter.podspec
More file actions
41 lines (25 loc) · 1.3 KB
/
SFPSDWriter.podspec
File metadata and controls
41 lines (25 loc) · 1.3 KB
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
31
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = "SFPSDWriter"
s.version = "0.3.1"
s.summary = "A simple Objective C (Mac and iOS) writer for .psd files with multiple layers and groups."
s.description = <<-DESC
SFPSDWriter is an Objective-C library for writing PSD files. Here at Shiny Frog we needed a way to write **multilayer** **PSDs** with **groups** and this library is the result after days of headaches.
It features:
* Multilayer PSD creation
* Grouping of layers
* Unicode layer name support
* Some layer configurations (like the blend mode of the layer)
* ARC (Automatic Reference Counting)
What SFPSDWriter **NOT** features:
* Ability to read PSD files
DESC
s.homepage = "https://github.com/shinyfrog/SFPSDWriter/"
s.license = { :type => 'BSD' }
s.author = { "Shiny Frog" => "shinyfrog@shinyfrog.net" }
s.source = { :git => "https://github.com/shinyfrog/SFPSDWriter.git", :tag => s.version.to_s }
s.platform = :ios, :osx
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.8"
s.source_files = "Library/SFPSDWriter/**/*.{h,m}"
s.requires_arc = true
end