Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Library/Shared/PSDWriter.m
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ - (NSMutableData *) makeEffectLayer
[effectInfo appendValue:75 withLength:1]; // Opacity as a percent
}

return [[NSMutableData alloc] init];
}

- (NSData *)createPSDData
Expand Down
19 changes: 19 additions & 0 deletions PSDWriter.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Pod::Spec.new do |spec|
spec.name = "PSDWriter"
spec.version = "1.0.0"
spec.summary = "An Objective-C library for creating layered PSDs from a set of images on Mac OS X or iOS"
spec.description = <<-DESC
An Objective-C library for creating layered PSDs from a set of images on Mac OS X or iOS
DESC

spec.homepage = "https://github.com/bengotow/PSDWriter"
spec.license = { :file => "LICENSE.txt" }
spec.author = "Ben Gotow"

spec.source = { :git => "https://github.com/bengotow/PSDWriter.git", :commit => "fc765dacfa0e8dc09d49918627a111362b9ed13b" }
spec.source_files = "Library/Shared/*.{h,m}"
spec.exclude_files = "Classes/Exclude"
spec.public_header_files = "Library/Shared/PSDWriter.h"

spec.requires_arc = false
end