-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCombineRealm.podspec
More file actions
30 lines (22 loc) · 972 Bytes
/
CombineRealm.podspec
File metadata and controls
30 lines (22 loc) · 972 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
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "CombineRealm"
s.version = "0.2.0"
s.summary = "A Combine wrapper of Realm's notifications and write bindings"
s.swift_version = "5.0"
s.description = <<-DESC
This is a Combine extension that provides an easy and straight-forward way
to use Realm's natively reactive collection type as a Publisher
DESC
s.homepage = "https://github.com/bitomule/CombineRealm"
s.license = 'MIT'
s.author = { "David Collado" => "bitomule@gmail.com" }
s.source = { :git => "https://github.com/bitomule/CombineRealm.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.source_files = 'Sources/Classes/*.swift'
s.frameworks = 'Combine'
s.dependency 'RealmSwift', '~> 3.14'
end