Skip to content

Instantly share code, notes, and snippets.

@rjyo
Last active December 22, 2015 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjyo/6486584 to your computer and use it in GitHub Desktop.
Save rjyo/6486584 to your computer and use it in GitHub Desktop.
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