-
-
Notifications
You must be signed in to change notification settings - Fork 248
/
IceCream.podspec
33 lines (29 loc) · 1.22 KB
/
IceCream.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
25
26
27
28
29
30
31
32
33
#
# Be sure to run `pod lib lint IceCream.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'IceCream'
s.version = '2.1.0'
s.summary = 'Sync Realm with CloudKit'
s.description = <<-DESC
Sync Realm Database with CloudKit, written in Swift. It works just like magic.
DESC
s.homepage = 'https://github.com/caiyue1993/IceCream'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/caiyue1993/IceCream.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/caiyue5'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = ["IceCream/Classes/**/*","IceCream/IceCream.h"]
s.public_header_files = ["IceCream/IceCream.h"]
s.static_framework = true
s.swift_version = '5.0'
s.dependency 'RealmSwift', '< 10.0.0'
end