-
Notifications
You must be signed in to change notification settings - Fork 20
/
Combine-Realm.podspec
30 lines (21 loc) · 1.01 KB
/
Combine-Realm.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
Pod::Spec.new do |s|
s.name = "Combine-Realm"
s.version = "2.0.1"
s.summary = "A Combine wrapper of Realm's notifications and write bindings"
s.description = <<-DESC
This is a Combine extension that provides an easy to use way to use Realm's natively reactive collection types as a Publishers
DESC
s.homepage = "https://github.com/CombineCommunity/CombineRealm.git"
s.license = 'MIT'
s.author = { "Istvan Kreisz" => "kreiszdev@gmail.com", "Combine Community" => "cocoapods@combine.community" }
s.source = { :git => "https://github.com/CombineCommunity/CombineRealm.git", :tag => s.version.to_s }
s.source_files = 'Sources/CombineRealm/*'
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.frameworks = 'Combine'
s.swift_version = "5.1"
s.dependency 'RealmSwift', '~> 5'
end