-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoyaLaconicPlugin.podspec
28 lines (24 loc) · 1.28 KB
/
MoyaLaconicPlugin.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Be sure to run `pod lib lint MoyaLaconicPlugin.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'MoyaLaconicPlugin'
s.version = '0.2.0'
s.summary = 'A Moya plugin for one-line logs'
s.description = <<-DESC
MoyaLaconicPlugin logs your Moya requests and their responses using a short message for each.
In an application with many network calls, sometimes it is enough to just know when a request is fired and when its response comes back.
Implement the Laconic protocol and assign an identifier to your endpoints.
MoyaLaconicPlugin will use these and write into the Console a one-line message, together with the status code of each response.
DESC
s.homepage = 'https://github.com/phi161/MoyaLaconicPlugin'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'phi161' => '[email protected]' }
s.source = { :git => 'https://github.com/phi161/MoyaLaconicPlugin.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.source_files = 'MoyaLaconicPlugin/Classes/**/*'
s.dependency 'Moya', '~> 14.0'
end