Files
JBChartView/UrbanAirship-iOS-SDK/1.3.1/UrbanAirship-iOS-SDK.podspec
T
Eloy Durán 2591e4cb33 Make the UrbanAirship spec work on Ruby 1.8.x and 1.9.x.
At least until we get to the actual cause of the problems.
2012-09-21 11:18:20 +02:00

25 lines
1.0 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'UrbanAirship-iOS-SDK'
s.version = '1.3.1'
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/urbanairship/ios-library.git', :tag => 'v1.3.1' }
# Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed
# versions that are no longer used in the .xcodeproj.
files = FileList['Airship/**/*.{h,m,c}']
files.exclude(/\/asi-http-request\//)
files.exclude(/\/json-framework\//)
files.exclude(/\/google-toolbox-for-mac\//)
s.source_files = files
s.libraries = 'z', 'sqlite3.0'
s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices',
'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony',
'StoreKit', 'CoreLocation'
end