Skip to content

Instantly share code, notes, and snippets.

@dmishe
Created October 2, 2013 23:59
Show Gist options
  • Save dmishe/6802407 to your computer and use it in GitHub Desktop.
Save dmishe/6802407 to your computer and use it in GitHub Desktop.
TestFlight 2.1.1 spec
Pod::Spec.new do |s|
s.name = 'TestFlightSDK'
s.version = '2.1.1'
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/1380771197/TestFlightSDK2.1.1.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