# # Be sure to run `pod lib lint PINRemoteImage.podspec' to ensure this is a # valid spec and remove all comments before submitting the spec. # # Any lines starting with a # are optional, but encouraged # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html # Pod::Spec.new do |s| s.name = "PINRemoteImage" s.version = "1.2.3" s.summary = "A thread safe, performant, feature rich image fetcher" s.homepage = "https://github.com/pinterest/PINRemoteImage" s.license = 'Apache 2.0' s.author = { "Garrett Moon" => "garrett@pinterest.com" } s.source = { :git => "https://github.com/pinterest/PINRemoteImage.git", :tag => s.version.to_s } s.social_media_url = 'https://twitter.com/garrettmoon' s.platform = :ios, '6.0' s.requires_arc = true # Include optional FLAnimatedImage module s.default_subspec = 'FLAnimatedImage' ### Subspecs s.subspec 'Core' do |cs| cs.source_files = 'Pod/Classes/**/*.{h,m}' cs.exclude_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m' cs.public_header_files = 'Pod/Classes/**/*.h' cs.frameworks = 'UIKit', 'ImageIO', 'CoreImage' cs.dependency 'PINCache', '>=2.1' end s.subspec "FLAnimatedImage" do |fs| fs.dependency 'PINRemoteImage/Core' fs.source_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m' fs.dependency 'FLAnimatedImage', '>= 1.0' end end