14 lines
558 B
Ruby
14 lines
558 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "TestFlightLogger"
|
|
s.version = "0.0.1"
|
|
s.summary = "A CocoaLumberjack logger for TestFlight."
|
|
s.homepage = "https://github.com/abillingsley/TestFlightLogger"
|
|
s.license = 'MIT'
|
|
s.author = { "Alex Billingsley" => "abillingsley@dyknow.com" }
|
|
s.source = { :git => 'https://github.com/abillingsley/TestFlightLogger.git', :tag => '0.0.1' }
|
|
s.source_files = '*.{h,m}'
|
|
s.requires_arc = true
|
|
s.platform = :ios
|
|
s.dependency 'CocoaLumberjack'
|
|
s.dependency 'TestFlightSDK'
|
|
end |