react-native-firebase/RNFirebase.podspec

20 lines
844 B
Plaintext
Raw Normal View History

2017-02-14 16:02:54 +00:00
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
2017-05-02 09:54:18 +00:00
Integrate firebase into your app using the React Native SDKs.
2017-02-14 16:02:54 +00:00
DESC
s.homepage = "http://invertase.io"
s.license = package['license']
s.author = "Mike Diarmid"
s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
s.social_media_url = 'http://twitter.com/mikediarmid'
2017-02-14 16:02:54 +00:00
s.platform = :ios, "8.0"
s.preserve_paths = 'README.md', 'package.json', '*.js'
s.source_files = 'ios/RNFirebase/**/*.{h,m}'
2017-02-14 16:02:54 +00:00
end