forked from alickbass/CodableFirebase
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodableFirebase.podspec
More file actions
Latest commit
19 lines (17 loc) · 792 Bytes
/
Copy pathCodableFirebase.podspec
File metadata and controls
19 lines (17 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name="CodableFirebase"
s.version="0.2.1"
s.summary="Use Codable with Firebase"
s.description="This library helps you use your custom models that conform to Codable protocol with Firebase Realtime Database and Firestore"
s.homepage="https://github.com/alickbass/CodableFirebase"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Oleksii Dykan"=>"alick_bass@mail.ru"}
s.ios.deployment_target="9.0"
s.osx.deployment_target="10.11"
s.watchos.deployment_target="2.0"
s.tvos.deployment_target="9.0"
s.requires_arc=true
s.source={:git=>"https://github.com/alickbass/CodableFirebase.git",:tag=>s.version,:branch=>'master'}
s.source_files="CodableFirebase/*.swift"
s.swift_version='5.0'
end