forked from dav/stackmob-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackMob.podspec
More file actions
24 lines (24 loc) · 994 Bytes
/
Copy pathStackMob.podspec
File metadata and controls
24 lines (24 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'StackMob'
s.version = '1.4.0'
s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
s.summary = "StackMob's SDK for accessing the StackMob Services on iOS."
s.homepage = 'http://stackmob.com'
s.author = { 'StackMob' => 'info@stackmob.com' }
s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}'
s.dependency 'AFNetworking', '1.1.0'
s.frameworks = 'CoreData', 'CoreLocation', 'Security', 'SystemConfiguration', 'MobileCoreServices'
s.requires_arc = true
s.documentation = {
:appledoc => [
'--index-desc','OverviewForDocs.md',
'--clean-output',
'--no-keep-undocumented-objects',
'--no-keep-undocumented-members',
'--no-repeat-first-par',
'--no-merge-categories',
'--install-docset'
]}
end