mirror of
https://github.com/zoriya/react-native-background-downloader.git
synced 2025-12-05 22:46:11 +00:00
18 lines
654 B
Ruby
18 lines
654 B
Ruby
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = package['name'].split('/')[1..-1].join('/')
|
|
s.version = package['version']
|
|
s.summary = 'React Native background downloader'
|
|
s.description = package['description']
|
|
s.author = package['author']
|
|
s.homepage = package['repository']['url']
|
|
s.license = package['license']
|
|
s.platform = :ios, '12.4'
|
|
s.source = { git: 'https://github.com/kesha-antonov/react-native-background-downloader.git', tag: 'master' }
|
|
s.source_files = 'ios/**/*.{h,m}'
|
|
s.requires_arc = true
|
|
|
|
s.dependency 'React-Core'
|
|
end
|