react-native-firebase/ios/RNFirebase.podspec

21 lines
912 B
Plaintext
Raw Normal View History

2017-02-14 16:02:54 +00:00
require 'json'
package = JSON.parse(File.read('../package.json'))
2017-02-14 16:02:54 +00:00
Pod::Spec.new do |s|
s.name = "RNFirebase"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
2017-08-18 10:46:55 +00:00
A well tested feature rich Firebase implementation for React Native, supporting iOS & Android.
2017-02-14 16:02:54 +00:00
DESC
2017-08-18 10:46:55 +00:00
s.homepage = "http://invertase.io/react-native-firebase"
2017-02-14 16:02:54 +00:00
s.license = package['license']
2017-08-18 10:46:55 +00:00
s.authors = "Invertase Limited"
2017-02-14 16:02:54 +00:00
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'
2017-02-14 16:02:54 +00:00
end