From c1b4312fe3e216b59b4f14dbbb9c32caa995b37b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Adamczak?= Date: Sat, 19 Jan 2013 21:31:06 +0100 Subject: [PATCH] Add preliminary AESCrypt.podspec file --- AESCrypt.podspec | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 AESCrypt.podspec diff --git a/AESCrypt.podspec b/AESCrypt.podspec new file mode 100644 index 0000000..d3455d8 --- /dev/null +++ b/AESCrypt.podspec @@ -0,0 +1,10 @@ +Pod::Spec.new do |s| + s.name = "AESCrypt" + s.version = "0.0.1" + s.summary = "Simple AES encryption / decryption for iOS and OS X." + s.homepage = "https://github.com/Gurpartap/AESCrypt-ObjC" + s.license = 'MIT' + s.author = { "Gurpartap Singh" => "contact@gurpartap.com" } + s.source = { :git => "https://github.com/Gurpartap/AESCrypt-ObjC.git", :commit => "6fa7a4f95d3cb5ada117e8a96b7a9eacaf0457ae" } + s.source_files = '*.{h,m}' +end