Skip to content

Commit 4dcdd04

Browse files
author
Oleksii Dykan
committed
Add cocoapods support
1 parent db7bd47 commit 4dcdd04

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CodableFirebase.podspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = "CodableFirebase"
3+
s.version = "0.0.3"
4+
s.summary = "Use Codable with Firebase"
5+
s.description = "This library helps you use your custom models that conform to Codable protocol with Firebase Realtime Database and Firestore"
6+
s.homepage = "https://github.com/alickbass/CodableFirebase"
7+
s.license = { :type => "MIT", :file => "LICENSE" }
8+
s.author = { "Oleksii Dykan" => "alick_bass@mail.ru" }
9+
10+
s.ios.deployment_target = "9.0"
11+
s.osx.deployment_target = "10.11"
12+
s.watchos.deployment_target = "2.0"
13+
s.tvos.deployment_target = "9.0"
14+
s.requires_arc = true
15+
16+
s.source = { :git => "https://github.com/alickbass/CodableFirebase.git", :tag => s.version, :branch => 'master'}
17+
s.source_files = "CodableFirebase/*.swift"
18+
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4' }
19+
20+
end

CodableFirebase/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.0.2</string>
18+
<string>0.0.3</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)