From 16af27dfad2c19190ba57faef0b09b463d9b3495 Mon Sep 17 00:00:00 2001 From: Martin Gratzer Date: Wed, 13 Mar 2013 12:09:37 +0100 Subject: [PATCH] Added threeMF version 0.1 --- threeMF/0.1/threeMF.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 threeMF/0.1/threeMF.podspec diff --git a/threeMF/0.1/threeMF.podspec b/threeMF/0.1/threeMF.podspec new file mode 100644 index 00000000..937744b1 --- /dev/null +++ b/threeMF/0.1/threeMF.podspec @@ -0,0 +1,26 @@ +Pod::Spec.new do |s| + s.name = 'threeMF' + s.version = '0.1' + s.license = 'MIT' + s.summary = 'A generic and extendable ad-hoc networking framework for easy device discovery, capability checking and pattern based RPC communication.' + s.homepage = 'http://www.threemf.com' + s.authors = { + 'Martin Gratzer' => 'mgratzer@threemf.com' + } + s.source = { + :git => 'https://github.com/mgratzer/threeMF.git', + :tag => s.version.to_s + } + s.source_files = 'threeMF/**/*.{h,m,c}' + s.requires_arc = true + s.ios.deployment_target = '5.0' + s.ios.frameworks = 'CFNetwork', 'Security' + s.osx.deployment_target = '10.7' + s.osx.frameworks = 'CoreServices', 'Security' + s.documentation = { + :html => 'http://threemf.com/documentation/', + :appledoc => [ + '--project-name', 'threeMF', + '--ignore', '"*.m"', + ]} +end