react-native-fast-image/react-native-fast-image.podspec
DreamPiggy 8a216e2079 feat: Upgrade to SDWebImage 5.0. (#454)
This uses SDAnimatedImageView instead of FLAnimatedImageView for better animation support.

BREAKING CHANGE: Upgrade SDWebImage, may affect some projects and CocoaPods users.

Fix the bug of `cacheOnly` behavior

fix #447
2019-05-07 22:06:53 -04:00

24 lines
712 B
Ruby

require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "react-native-fast-image"
s.version = package['version']
s.summary = "🚩 FastImage, performant React Native image component."
s.authors = { "Dylan Vann" => "dylan@dylanvann.com" }
s.homepage = "https://github.com/DylanVann/react-native-fast-image#readme"
s.license = "MIT"
s.platform = :ios, "8.0"
s.framework = 'UIKit'
s.requires_arc = true
s.source = { :git => "https://github.com/DylanVann/react-native-fast-image.git" }
s.source_files = "ios/**/*.{h,m}"
s.exclude_files = "ios/Vendor/**/*.{h,m}"
s.dependency 'React'
s.dependency 'SDWebImage', '~> 5.0'
end