forked from caamorales/RealmCloudKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRealmCloudKit.podspec
24 lines (20 loc) · 900 Bytes
/
RealmCloudKit.podspec
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 = "RealmCloudKit"
s.version = "0.1.0"
s.summary = "A Swift library built on top of Realm to sync data using CloudKit."
s.homepage = "https://github.com/BellAppLab/RealmCloudKit"
s.license = 'MIT'
s.author = { "Bell App Lab" => "apps@bellapplab.com" }
s.source = { :git => "https://github.com/BellAppLab/RealmCloudKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/BellAppLab'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'Foundation', 'CloudKit', 'Security'
s.dependency 'MultiRealm'
s.dependency 'SwiftFileManager', '~> 0.3.2'
s.dependency 'KeychainAccess'
s.dependency 'Internet'
# iOS
s.ios.resource_bundle = { 'RealmCloudKit-iOS' => ['RealmCloudKit/Localization/*.lproj'] }
end