2016-07-27 10:07:47 +03:00
|
|
|
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']
|
2019-01-06 03:19:41 +03:00
|
|
|
s.homepage = 'https://github.com/react-native-community/react-native-svg'
|
2016-07-27 10:07:47 +03:00
|
|
|
s.authors = 'Horcrux Chen'
|
2019-01-06 03:19:41 +03:00
|
|
|
s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => s.version }
|
2016-07-27 10:07:47 +03:00
|
|
|
s.source_files = 'ios/**/*.{h,m}'
|
|
|
|
s.requires_arc = true
|
2017-08-04 00:50:31 +03:00
|
|
|
s.platforms = { :ios => "8.0", :tvos => "9.2" }
|
2016-08-30 13:55:40 +03:00
|
|
|
s.dependency 'React'
|
2016-07-27 10:07:47 +03:00
|
|
|
end
|