No Description

RNThumbnail.podspec 708B

1234567891011121314151617181920212223
  1. require 'json'
  2. package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
  3. Pod::Spec.new do |s|
  4. s.name = "RNThumbnail"
  5. s.version = package['version']
  6. s.summary = package['description']
  7. s.description = package['description']
  8. s.license = package['license']
  9. s.author = package['author']
  10. s.homepage = "https://github.com/phuochau/react-native-thumbnail/#readme"
  11. s.source = { :git => 'https://github.com/phuochau/react-native-thumbnail.git' }
  12. s.requires_arc = true
  13. s.platform = :ios, '7.0'
  14. s.preserve_paths = 'README.md', 'package.json', 'index.js'
  15. s.source_files = 'ios/**/*.{h,m}'
  16. s.dependency 'React'
  17. end