-
Notifications
You must be signed in to change notification settings - Fork 8
/
AlamofireLogger.podspec
23 lines (21 loc) · 997 Bytes
/
AlamofireLogger.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "AlamofireLogger"
s.version = "1.0.2"
s.summary = "Tiny Alamofire plugin that logs requests and responses."
s.homepage = "https://github.com/dclelland/AlamofireLogger"
s.license = { :type => 'MIT' }
s.author = { "Daniel Clelland" => "[email protected]" }
s.source = { :git => "https://github.com/dclelland/AlamofireLogger.git", :tag => "1.0.2" }
s.source_files = 'Sources/AlamofireLogger/**/*.swift'
s.requires_arc = true
s.swift_versions = ['5.1', '5.2']
s.dependency 'Alamofire', '~> 5.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
end