mirror of
https://github.com/caoer/CodableFirebase.git
synced 2026-04-02 22:35:15 +08:00
20 lines
792 B
Ruby
20 lines
792 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CodableFirebase"
|
|
s.version = "0.0.9"
|
|
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 = '4.1'
|
|
end
|