Skip to content

Instantly share code, notes, and snippets.

@HBehrens
Last active October 13, 2015 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HBehrens/4164798 to your computer and use it in GitHub Desktop.
Save HBehrens/4164798 to your computer and use it in GitHub Desktop.
CocoaPods Spec for UrbanAirship
Pod::Spec.new do |s|
s.name = 'UrbanAirship-iOS-SDK'
s.version = '1.3.5.a'
s.license = 'BSD'
s.platform = :ios
s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.'
s.homepage = 'https://github.com/urbanairship/ios-library'
s.author = { 'Urban Airship' => 'support@urbanairship.com' }
s.source = { :git => 'https://github.com/HBehrens/ios-library.git', :commit => '038d1bbbed19d5d0459a87e1fce47cdd87b7ddbc' }
# Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed
# versions that are no longer used in the .xcodeproj.
s.source_files = 'Airship/**/*.{h,m,c}'
s.exclude_files = '**/{google-toolbox-for-mac,json-framework,asi-http-request}/**/*'
s.dependency 'ZipArchive', '1.1.0'
s.dependency 'Reachability', '3.1.0'
s.dependency 'ASIHTTPRequest', '1.8.1'
s.dependency 'SBJson', '3.1.1'
s.libraries = 'z', 'sqlite3.0'
s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices',
'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony',
'StoreKit', 'CoreLocation', 'MapKit'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment