mirror of
https://github.com/zhigang1992/react-native-video-cache.git
synced 2026-01-12 22:40:52 +08:00
28 lines
876 B
Ruby
28 lines
876 B
Ruby
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "react-native-video-cache"
|
|
s.version = package["version"]
|
|
s.summary = package["description"]
|
|
s.description = <<-DESC
|
|
react-native-video-cache
|
|
DESC
|
|
s.homepage = "https://github.com/zhigang1992/react-native-video-cache"
|
|
s.license = "MIT"
|
|
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
|
|
s.authors = { "Kyle Fang" => "zhigang1992@gmail.com" }
|
|
s.platforms = { :ios => "9.0" }
|
|
s.source = { :git => "https://github.com/zhigang1992/react-native-video-cache.git", :tag => "#{s.version}" }
|
|
|
|
s.source_files = "ios/**/*.{h,m,swift}"
|
|
s.requires_arc = true
|
|
|
|
s.dependency "React"
|
|
s.dependency 'KTVHTTPCache', '~> 2.0.0'
|
|
# ...
|
|
# s.dependency "..."
|
|
end
|
|
|