Skip to content

Instantly share code, notes, and snippets.

@mvarie
Last active August 29, 2015 13:56
Show Gist options
  • Save mvarie/9260467 to your computer and use it in GitHub Desktop.
Save mvarie/9260467 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "OvershareKit"
s.version = "1.1.0"
s.summary = "A soup-to-nuts sharing library for iOS."
s.homepage = "https://github.com/overshare/overshare-kit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Jared Sinclair" => "desk@jaredsinclair.com", "Justin Williams" => "justin@carpeaqua.com" }
s.source = { :git => "https://github.com/overshare/overshare-kit.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.frameworks = 'UIKit'
s.compiler_flags = "-fmodules"
s.ios.deployment_target = '7.0'
s.source_files = ['Overshare Kit/*.{h,m}']
s.resources = ['Overshare Kit/Images/*', 'Overshare Kit/*.xib']
s.dependency 'ADNLogin'
s.dependency 'PocketAPI'
googlePlusIosSdkVersion = '1.5.0'
s.dependency 'google-plus-ios-sdk', googlePlusIosSdkVersion # XXX must use this very version to know the framework search path below :(
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => "\"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-#{googlePlusIosSdkVersion}\"" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment