Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added pod spec #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
24 changes: 24 additions & 0 deletions UIImage+PDF.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'UIImage+PDF'
s.version = '1.1.3'
s.license = {
:type => 'custom',
:text => <<-LICENSE
Copyright 2012 Nigel Timothy Barber - @mindbrix.

All rights reserved.

Permission is given to use this source code file without charge in any project, commercial or otherwise, entirely at your risk, with the condition that any redistribution (in part or whole) of source code must retain this copyright and permission notice. Attribution in compiled projects is appreciated but not required.
LICENSE
}
s.summary = 'Simple UIImage+PDF renderer category for iOS scalable assets.'
s.homepage = 'https://github.com/mindbrix/UIImage-PDF'
s.author = { 'Nigel Timothy Barber' => '[email protected]' }
s.social_media_url = 'https://twitter.com/mindbrix'
s.source = { :git => 'https://github.com/mindbrix/UIImage-PDF.git', :tag => '1.1.3' }
s.platform = :ios
s.source_files = 'UIImage+PDF/*.{h,m}'

s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics'
s.requires_arc = true
end