Skip to content

Instantly share code, notes, and snippets.

@ttahmouch
Created November 4, 2016 15:05
Show Gist options
  • Save ttahmouch/f8f5a31a85badefc5862c6728ecc54de to your computer and use it in GitHub Desktop.
Save ttahmouch/f8f5a31a85badefc5862c6728ecc54de to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "phonegap-plugin-contentsync"
s.version = "1.2.5.cocoapods"
s.summary = "Download and cache remotely hosted content."
s.description = "Download and cache remotely hosted zipped content bundles, unzipping automatically."
s.homepage = "https://github.com/phonegap/phonegap-plugin-contentsync"
s.author = "Adobe PhoneGap Team"
s.license = "Apache License, Version 2.0"
s.platform = :ios
s.source = { :git => "https://github.com/ttahmouch/phonegap-plugin-contentsync.git", :tag => "#{s.version}" }
s.source_files = "src/ios/ContentSync.{h,m}"
s.preserve_paths = "*.md", "www/*.js"
s.frameworks = "Foundation", "MobileCoreServices"
s.dependency "Cordova", ">= 4.0.1"
s.dependency "SSZipArchive", "1.6.2"
s.pod_target_xcconfig = { "OTHER_CFLAGS" => "-DUSE_COCOAPODS=1" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment