From 292544e4ae65b150c1de7566c51802f022d8a40f Mon Sep 17 00:00:00 2001 From: Klaus-Peter Dudas Date: Sun, 5 May 2013 09:30:33 +0100 Subject: [PATCH] Added NSString-Hashes version 1.1.0 --- NSString-Hashes/1.1.0/NSString-Hashes.podspec | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 NSString-Hashes/1.1.0/NSString-Hashes.podspec diff --git a/NSString-Hashes/1.1.0/NSString-Hashes.podspec b/NSString-Hashes/1.1.0/NSString-Hashes.podspec new file mode 100644 index 000000000000000..fd878dac839781b --- /dev/null +++ b/NSString-Hashes/1.1.0/NSString-Hashes.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + + s.name = "NSString-Hashes" + s.version = "1.1.0" + s.summary = "Simple Category of NSString that allows for easy MD5, SHA1 and SHA2 hashing." + s.homepage = "https://github.com/hypercrypt/NSString-Hashes" + + s.license = { :type => "public domain", :file => 'LICENSE' } + + s.author = { "Klaus-Peter Dudas" => "klaus@hypercrypt.net" } + + s.source = { + :git => "https://github.com/hypercrypt/NSString-Hashes.git", + :tag => "1.1.0" + } + + s.platform = :ios, '5.0' + + s.source_files = 'NSString+Hashes.{h,m}' + s.exclude_files = 'Classes/Exclude' + + s.requires_arc = true + +end