UNPKG

756 BPlain TextView Raw
1require 'json'
2
3package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4version = package['version']
5
6Pod::Spec.new do |s|
7 s.name = 'react-native-firebaseui-auth'
8 s.version = version
9 s.summary = 'Easy login with FirebaseUi Auth'
10 s.homepage = 'https://github.com/oijusti/react-native-firebaseui-auth'
11 s.license = package['license']
12 s.author = 'Oscar Justi <oijustisoft@gmail.com>'
13 s.platforms = { :ios => '9.0', :tvos => '9.2' }
14 s.source = { :git => 'https://github.com/oijusti/react-native-firebaseui-auth.git', :tag => "v#{version}" }
15 s.source_files = 'ios/*.{h,m}'
16 s.dependency 'React'
17end