Added threeMF version 0.1

This commit is contained in:
Martin Gratzer
2013-03-13 12:09:37 +01:00
parent b7f0cd76a7
commit 16af27dfad
+26
View File
@@ -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