Files
react-native-svg/RNSVG.podspec
Andy Trevorah d5a5e97b38 Fix tag mismatch in podspec (#477)
The tags for this repo *usually* dont have a `v` prefix, so doing a `pod install` with a direct dependency on the podspec fails. This fixes that mismatch.
2017-11-23 13:48:03 -08:00

18 lines
650 B
Ruby

require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RNSVG'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = 'https://github.com/magicismight/react-native-svg'
s.authors = 'Horcrux Chen'
s.source = { :git => 'https://github.com/magicismight/react-native-svg.git', :tag => s.version }
s.source_files = 'ios/**/*.{h,m}'
s.requires_arc = true
s.platforms = { :ios => "8.0", :tvos => "9.2" }
s.dependency 'React'
end