Adopt changes from community guideline for repository setup

https://github.com/react-native-community/.github/blob/master/Guidelines/Repository%20Setup.md
This commit is contained in:
Mikael Sand
2019-07-26 02:51:02 +03:00
parent 612365652b
commit f5bf06afd2
8 changed files with 620 additions and 378 deletions

View File

@@ -7,11 +7,11 @@ Pod::Spec.new do |s|
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = 'https://github.com/react-native-community/react-native-svg'
s.homepage = package['homepage']
s.authors = 'Horcrux Chen'
s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => s.version }
s.platforms = { :ios => "9.0", :tvos => "9.2" }
s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => "v#{s.version}" }
s.source_files = 'ios/**/*.{h,m}'
s.requires_arc = true
s.platforms = { :ios => "8.0", :tvos => "9.2" }
s.dependency 'React'
s.dependency 'React'
end