From ee586b8908e09b186fe64ed78dc5bcee797918c4 Mon Sep 17 00:00:00 2001 From: blackjacx Date: Fri, 17 May 2013 16:10:04 +0200 Subject: [PATCH] added PublicCodeLibrary Project --- .../1.0.0/PublicCodeLibrary.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 PublicCodeLibrary/1.0.0/PublicCodeLibrary.podspec diff --git a/PublicCodeLibrary/1.0.0/PublicCodeLibrary.podspec b/PublicCodeLibrary/1.0.0/PublicCodeLibrary.podspec new file mode 100644 index 00000000..7e44b476 --- /dev/null +++ b/PublicCodeLibrary/1.0.0/PublicCodeLibrary.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = "PublicCodeLibrary" + s.version = "1.0.0" + s.summary = "Static Library Project containing code to simplify daily development tasks." + s.homepage = "http://github.com/Blackjacx/PublicCodeLibrary" + s.license = { + :type => 'MIT' + } + s.author = { + "Stefan Herold" => "stefan.herold@gmail.com" + } + s.source = { + :git => "https://github.com/Blackjacx/PublicCodeLibrary.git", + :tag => s.version.to_s + } + s.platform = :ios, '5.0' + s.ios.deployment_target = '5.0' + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + s.requires_arc = true +end \ No newline at end of file