Bump license year and add podspec

This commit is contained in:
Sam Soffes
2012-06-02 13:32:36 -07:00
parent d9ea638369
commit db0c62c481
2 changed files with 19 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
Copyright (c) 2010-2011 Sam Soffes
Copyright (c) 2010-2012 Sam Soffes
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the

18
SSZipArchive.podspec Normal file
View File

@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = 'SSZipArchive'
s.version = '0.2.1'
s.summary = 'Utility class for zipping and unzipping files on iOS and Mac.'
s.homepage = 'https://github.com/samsoffes/ssziparchive'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/ssziparchive.git', :tag => '0.2.1' }
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.'
s.source_files = 'SSZipArchive.*', 'minizip/*.{h,c}'
s.library = 'z'
s.clean_paths = ['Tests', '.gitignore']
s.license = { :type => 'MIT', :file => 'LICENSE' }
# Maintain the dir structure for headers
def s.copy_header_mapping(from)
from
end
end