mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
24 lines
1.0 KiB
Ruby
24 lines
1.0 KiB
Ruby
require 'json'
|
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "RNFBStorage"
|
|
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.3.0'
|
|
s.dependency 'Firebase/Storage', '~> 6.3.0'
|
|
s.dependency 'RNFBApp'
|
|
s.static_framework = true
|
|
end
|