Skip to content

Instantly share code, notes, and snippets.

@fullsailor
Created September 12, 2013 16:51
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 fullsailor/6540645 to your computer and use it in GitHub Desktop.
Save fullsailor/6540645 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'TestFlightSDK'
s.version = '2.0.2-beta'
s.license = {
:type => 'Commercial',
:text => <<-LICENSE
All text and design is copyright © 2010-2013 TestFlight App, Inc.
All rights reserved.
https://testflightapp.com/tos/
LICENSE
}
s.summary = 'TestFlightSDK for over-the-air beta testing and crash reporting.'
s.homepage = 'http://www.testflightapp.com'
s.author = { 'TestFlight' => 'support@testflightapp.com' }
s.source = { :http => 'https://d193ln56du8muy.cloudfront.net/sdk/1377926608/TestFlightSDK2.0.2-beta.zip' }
s.platform = :ios
s.source_files = '*.h'
s.preserve_paths = 'libTestFlight.a'
s.library = 'TestFlight', 'z'
s.framework = 'UIKit'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/TestFlightSDK"' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment