forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RNFBDatabase.podspec
22 lines (21 loc) · 984 Bytes
/
RNFBDatabase.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read('./package.json'))
Pod::Spec.new do |s|
s.name = "RNFBDatabase"
s.version = package["version"]
s.description = package["description"]
s.summary = <<-DESC
A well tested feature rich Firebase implementation for React Native, supporting iOS & Android.
DESC
s.homepage = "http://invertase.io/oss/react-native-firebase"
s.license = package['license']
s.authors = "Invertase Limited"
s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
s.social_media_url = 'http://twitter.com/invertaseio'
s.ios.deployment_target = "9.0"
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core', '~> 6.5.0'
s.dependency 'RNFBApp'
s.static_framework = true
end