Skip to content

Instantly share code, notes, and snippets.

@melihbuyuk
Last active August 29, 2015 13:56
Show Gist options
  • Save melihbuyuk/8952775 to your computer and use it in GitHub Desktop.
Save melihbuyuk/8952775 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'SocialAccounts'
s.version = '0.0.1'
s.license = 'Apache 2.0'
s.summary = 'SocialAccounts is an iOS framework that provides an easy way to manage social network accounts'
s.homepage = 'https://github.com/aporat/SocialAccounts.git'
s.author = { 'Adar Porat' => '[email protected]' }
s.source = { :git => 'https://github.com/aporat/SocialAccounts.git' }
s.platform = :ios
s.source_files = 'SocialAccounts/*'
s.subspec 'Facebook' do |ss|
ss.source_files = 'SocialAccounts/Facebook/*.{h,m}'
end
s.subspec 'Google' do |ss|
ss.source_files = 'SocialAccounts/Google/*.{h,m}'
end
s.subspec 'Instagram' do |ss|
ss.source_files = 'SocialAccounts/Instagram/*.{h,m}'
end
s.subspec 'Twitter' do |ss|
ss.source_files = 'SocialAccounts/Twitter/*.{h,m}'
end
s.subspec 'GTMOAuth' do |ss|
ss.source_files = 'Vendor/GTMOAuth/*.{h,m}'
end
s.resources = "SocialAccounts/SocialAccounts.bundle"
s.dependency 'AFNetworking', '>= 0.9'
s.dependency 'GTMHTTPFetcher', '~> 0.0.2'
s.dependency 'gtm-oauth2', '~> 0.0.3'
s.dependency 'Facebook-iOS-SDK', '~> 3.2.0'
s.ios.frameworks = 'Accounts', 'Security', 'CFNetwork', 'MapKit', 'Social', 'SystemConfiguration'
s.ios.deployment_target = '5.0'
s.subspec 'GData' do |gdata|
gdata.dependency 'GData', '~> 0.0.1'
gdata.requires_arc = false
end
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment