From 15592a41b170f2f0e25f42b683c127badd900aeb Mon Sep 17 00:00:00 2001 From: longbai Date: Tue, 7 Oct 2014 09:52:47 +0800 Subject: [PATCH] add podspec --- Qiniu.podspec | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Qiniu.podspec diff --git a/Qiniu.podspec b/Qiniu.podspec new file mode 100644 index 0000000..4331a08 --- /dev/null +++ b/Qiniu.podspec @@ -0,0 +1,42 @@ +Pod::Spec.new do |s| + s.name = 'Qiniu' + s.version = '6.3.2' + s.summary = 'Qiniu Resource Storage SDK for iOS' + s.homepage = 'https://github.com/qiniu/ios-sdk' + s.social_media_url = 'http://weibo.com/qiniutek' + s.author = 'Qiniu => sdk@qiniu.com' + s.documentation_url = 'http://developer.qiniu.com/docs/v6/sdk/ios-sdk.html' + s.source = {:git => 'https://github.com/qiniu/ios-sdk.git', :tag => 'v6.3.2'} + + s.platform = :ios, '6.0' + s.ios.deployment_target = '6.0' + + s.source_files = 'QiniuSDK/**/*.{h,m}' + s.requires_arc = true + + s.license = { :type => 'MIT', :text => <<-LICENSE +The MIT License (MIT) + +Copyright (c) 2012-2014 qiniu.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + LICENSE + } + +end