2
0
mirror of synced 2025-01-09 13:45:50 +00:00
react-native-firebase/ios/RNFirebase.podspec
Jean Regisser fe1701b825
Fix podspec so compilation works
Not sure when this broke, but this fixes compilation when used in
project that pulls the dependency using CocoaPods and Xcode 9.3
2018-04-24 17:32:24 +02:00

21 lines
912 B
Ruby

require 'json'
package = JSON.parse(File.read('../package.json'))
Pod::Spec.new do |s|
s.name = "RNFirebase"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
A well tested feature rich Firebase implementation for React Native, supporting iOS & Android.
DESC
s.homepage = "http://invertase.io/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/RNFirebase'
s.platform = :ios, "9.0"
s.source_files = 'RNFirebase/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core'
end