Last active
December 22, 2015 14:38
-
-
Save rjyo/6486584 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "AESCrypt-ObjC" | |
s.version = "1.0.0" | |
s.summary = "A simple and opinionated AES encrypt / decrypt Objective-C class that just works." | |
s.homepage = "https://github.com/Gurpartap/AESCrypt-ObjC" | |
s.license = 'MIT' | |
s.author = { "Gurpartap Singh" => "https://github.com/Gurpartap" } | |
s.source = { :git => "https://github.com/Gurpartap/AESCrypt-ObjC.git"} | |
s.platform = :ios, '5.0' | |
s.source_files = '*.{h,m}' | |
s.requires_arc = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment