-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathNCMB.podspec
More file actions
23 lines (23 loc) · 957 Bytes
/
Copy pathNCMB.podspec
File metadata and controls
23 lines (23 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "NCMB"
s.version = "2.0"
s.summary = "NCMB is SDK for NIFTY Cloud mobile backend."
s.description = <<-DESC
NCMB is SDK for NIFTY Cloud mobile backend.
NIFTY Cloud mobile backend function
* Data store
* Push Notification
* User Management
* SNS integration
* File store
DESC
s.homepage = "http://mb.cloud.nifty.com"
s.license = "Apache License, Version 2.0"
s.author = "NIFTY Corporation"
s.platform = :ios, "5.0"
s.source = { :git => 'https://github.com/NIFTYCloud-mbaas/ncmb_ios.git', :tag => 'v2.0.0' }
s.source_files = "NCMB/**/*.{h,m,c}"
s.dependency 'Facebook-iOS-SDK'
s.frameworks = "Foundation", "UIKit", "MobileCoreServices", "AudioToolbox", "SystemConfiguration"
s.requires_arc = true
end