No Description

RNThumbnail.podspec 766B

1234567891011121314151617181920212223242526272829
  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 = "RNThumbnail"
  7. s.description = <<-DESC
  8. RNThumbnail
  9. DESC
  10. s.homepage = ""
  11. s.license = "MIT"
  12. # s.license = { :type => "MIT", :file => "FILE_LICENSE" }
  13. s.author = { "author" => "author@domain.cn" }
  14. s.homepage = "https://github.com/author/RNThumbnail"
  15. s.platform = :ios, "7.0"
  16. s.source = { :git => "https://github.com/author/RNThumbnail.git", :tag => "master" }
  17. s.source_files = "ios/**/*.{h,m}"
  18. s.requires_arc = true
  19. s.dependency "React"
  20. #s.dependency "others"
  21. end