Skip to content

Instantly share code, notes, and snippets.

@hujunfeng
Created October 26, 2015 11:36
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save hujunfeng/45450ba66f1a81f51852 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |spec|
spec.name = 'YahooSearchKit'
spec.platform = :ios, '7.0'
spec.version = '0.5.0'
spec.summary = "Yahoo Search SDK for iOS"
spec.license = { :type => 'Yahoo', :text => 'Yahoo Confidential' }
spec.homepage = 'https://github.com/yahoo/searchsdk-ios'
spec.author = {
'Mobile Search' => 'mobile-search-eng@yahoo-inc.com'
}
spec.source = {
:git => 'https://github.com/yahoo/searchsdk-ios.git',
:tag => spec.version.to_s
}
spec.requires_arc = true
spec.preserve_paths = ['Framework/YahooSearchKit.framework']
spec.vendored_frameworks = ['Framework/YahooSearchKit.framework']
spec.resources = 'Framework/YahooSearchKit.framework/Versions/A/Resources/YahooSearchKitResources.bundle'
spec.weak_framework = 'WebKit'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment